Skip to content

Commit

Permalink
test: 9100 포트 포워딩
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachneee committed Oct 17, 2024
1 parent a6e8ac8 commit adc5c77
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/backend-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,10 +175,10 @@ jobs:
location /actuator {
proxy_pass http://haengdong-backend-$NEXT_PORT:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
}
}" > ./nginx-conf/default.conf
Expand Down Expand Up @@ -214,10 +214,10 @@ jobs:
location /actuator {
proxy_pass http://haengdong-backend-$NEXT_PORT:8080;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host \$host;
proxy_set_header X-Real-IP \$remote_addr;
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto \$scheme;
}
}" > ./nginx-conf/default.conf
Expand Down

0 comments on commit adc5c77

Please sign in to comment.