We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6ba85f commit 0c45af4Copy full SHA for 0c45af4
1 file changed
nginx.conf
@@ -15,7 +15,7 @@ server {
15
16
# API 요청 프록시
17
location /api/ {
18
- proxy_pass ${VITE_API_URL}/api/;
+ proxy_pass ${VITE_API_URL};
19
proxy_set_header Host $host;
20
proxy_set_header X-Real-IP $remote_addr;
21
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
@@ -40,7 +40,7 @@ server {
40
41
# OAuth2 인증 프록시
42
location /oauth2/ {
43
- proxy_pass ${VITE_API_URL}/oauth2/;
+ proxy_pass proxy_pass ${VITE_API_URL};
44
45
46
0 commit comments