Skip to content

Commit

Permalink
Chore : nginx.conf 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
hyeonda02 committed Aug 29, 2024
1 parent 14c50d5 commit dd22b06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .platform/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ events {
http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
client_max_body_size 20M;


log_format main '$remote_addr - $remote_user [$time_local] "$request" '
Expand All @@ -35,6 +34,8 @@ http {
listen 80 default_server;
listen [::]:80 default_server;

client_max_body_size 20M;

location / {
proxy_pass http://springboot;
# CORS 관련 헤더 추가
Expand Down

0 comments on commit dd22b06

Please sign in to comment.