Skip to content

Commit 67d769b

Browse files
authored
Merge pull request #30 from LPilogue/develop
chore: nginx.conf url에 / 추가
2 parents 22d7c75 + 6d85f93 commit 67d769b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nginx.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ server {
88
}
99

1010
location /api/be {
11-
proxy_pass http://${BE_HOST}:${BE_PORT};
11+
proxy_pass http://${BE_HOST}:${BE_PORT}/;
1212
}
1313
location /api/rec {
14-
proxy_pass http://${REC_HOST}:${REC_PORT};
14+
proxy_pass http://${REC_HOST}:${REC_PORT}/;
1515
}
1616

1717
error_page 500 502 503 504 /50x.html;

0 commit comments

Comments
 (0)