diff --git a/nginx/default.conf b/nginx/default.conf new file mode 100644 index 0000000..5ccb828 --- /dev/null +++ b/nginx/default.conf @@ -0,0 +1,11 @@ +upstream app { + server spring-app:8080; # WAS 컨테이너의 이름 +} + +server { + listen 80; + + location / { + proxy_pass http://app; + } +} \ No newline at end of file