Skip to content

Commit

Permalink
[feat]쿠키로그인 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
jainefer committed May 21, 2024
1 parent 7de4642 commit e1a6172
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions .platform/nginx.conf
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
client_max_body_size 2000M;
client_body_buffer_size 10M;
client_max_body_size 2000M; # 전역 설정
client_body_buffer_size 10M; # 전역 설정
proxy_connect_timeout 900;
proxy_send_timeout 900;
proxy_read_timeout 900;
Expand Down Expand Up @@ -39,8 +39,6 @@ http {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 2000M;
client_body_buffer_size 10M;
}

access_log /var/log/nginx/access.log main;
Expand All @@ -53,6 +51,4 @@ http {

include conf.d/elasticbeanstalk/healthd.conf;
}
}
client_max_body_size 2000M;
client_body_buffer_size 10M;
}

0 comments on commit e1a6172

Please sign in to comment.