21 lines
393 B
Nginx Configuration File
21 lines
393 B
Nginx Configuration File
server {
|
|
listen 4321;
|
|
server_name _;
|
|
|
|
resolver 127.0.0.11 valid=10s;
|
|
set $backend_url http://backend:8765;
|
|
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass $backend_url;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|