diff --git a/.gitignore b/.gitignore index 07fc33f..91d8ad1 100644 --- a/.gitignore +++ b/.gitignore @@ -37,3 +37,5 @@ out/ ### VS Code ### .vscode/ + +app.log diff --git a/.platform/nginx.conf b/.platform/nginx.conf index 118f133..53d9cc2 100644 --- a/.platform/nginx.conf +++ b/.platform/nginx.conf @@ -36,9 +36,9 @@ http { location / { proxy_pass http://springboot; # CORS 관련 헤더 추가 - add_header 'Access-Control-Allow-Origin' '*'; - add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; - add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type'; + # add_header 'Access-Control-Allow-Origin' '*'; + # add_header 'Access-Control-Allow-Methods' 'GET, POST, PUT, DELETE, OPTIONS'; + # add_header 'Access-Control-Allow-Headers' 'Authorization, Content-Type'; proxy_http_version 1.1; proxy_set_header Connection $connection_upgrade; proxy_set_header Upgrade $http_upgrade; @@ -62,6 +62,6 @@ http { gzip_comp_level 4; # Include the Elastic Beanstalk generated locations - include conf.d/elasticbeanstalk/healthd.conf; + # include conf.d/elasticbeanstalk/healthd.conf; } }