Update nginx-single-docker-image.conf

This commit is contained in:
Narayana 2023-04-12 21:22:44 +05:30
parent 5190ea7280
commit e1fe01934c
2 changed files with 9 additions and 1 deletions

View File

@ -18,6 +18,11 @@ server {
proxy_set_header Host $host; proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
} }
location /api/extension/ {
proxy_pass http://localhost:3000/api/;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
error_page 500 502 503 504 /50x.html; error_page 500 502 503 504 /50x.html;
location = /50x.html { location = /50x.html {
root /usr/share/nginx/html; root /usr/share/nginx/html;

View File

@ -11,10 +11,13 @@ server {
location / { location / {
proxy_pass http://planefrontend:3000/; proxy_pass http://planefrontend:3000/;
} }
location /api/ { location /api/ {
proxy_pass http://planebackend:8000/api/; proxy_pass http://planebackend:8000/api/;
} }
location /api/extension/ {
proxy_pass http://localhost:3000/api/;
}
} }
} }