Skip to content

Commit

Permalink
chore: nginx docker 파일 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoya324 committed Aug 10, 2024
1 parent 38d5fcb commit 25f103a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions nginx/default.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
upstream app {
server spring-app:8080; # WAS 컨테이너의 이름
}

server {
listen 80;

location / {
proxy_pass http://app;
}
}

0 comments on commit 25f103a

Please sign in to comment.