Skip to content

Commit

Permalink
Merge pull request #124 from jurumarble/dev
Browse files Browse the repository at this point in the history
feat: Nginx 클라이언트 요청 파일 최대 크기 변경
  • Loading branch information
alsduq1117 authored Oct 26, 2023
2 parents 1920eeb + 0e2e05b commit 0dc1289
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
16 changes: 16 additions & 0 deletions .platform/nginx/conf.d/elasticbeanstalk/proxy.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
server {
listen 80 default_server;
access_log /var/log/nginx/access.log main;

client_max_body_size 20M;

client_header_timeout 60;
client_body_timeout 60;
keepalive_timeout 60;
gzip off;
gzip_comp_level 4;
gzip_types text/plain text/css application/json application/javascript application/x-javascript text/xml application/xml application/xml+rss text/javascript;

# Include the Elastic Beanstalk generated locations
include /etc/nginx/conf.d/elasticbeanstalk/*.conf;
}
3 changes: 0 additions & 3 deletions .platform/nginx/conf.d/proxy.conf

This file was deleted.

0 comments on commit 0dc1289

Please sign in to comment.