From 25f103a5ec5874c0d472255b201c16b549c0944e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EB=82=98=EA=B2=BD=ED=98=B8?= Date: Sun, 11 Aug 2024 04:50:45 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20nginx=20docker=20=ED=8C=8C=EC=9D=BC=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- nginx/default.conf | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nginx/default.conf 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