Skip to content

Commit

Permalink
fix : 운영서버 개발서버와 포트번호 겹치지 않도록 수정
Browse files Browse the repository at this point in the history
( 개발서버 : 8080, 운영서버 : 8081 임시적으로 설정 차후에 바꿀 예정 )
  • Loading branch information
LHS-11 committed Feb 26, 2024
1 parent 99f9a4b commit f9ffdb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/nginx/prod/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ http {

# Spring Boot 애플리케이션으로의 프록시
location / {
proxy_pass http://backend-dev:8080;
proxy_pass http://backend-prod:8081;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
Expand Down

0 comments on commit f9ffdb2

Please sign in to comment.