Files
mwy/frontend/nginx.conf

32 lines
885 B
Nginx Configuration File
Raw Normal View History

2026-05-11 19:34:35 +08:00
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
location /api/ {
2026-05-20 16:31:07 +08:00
proxy_pass http://backend:8963;
2026-05-11 19:34:35 +08:00
proxy_http_version 1.1;
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;
}
location /media/ {
2026-05-20 16:31:07 +08:00
proxy_pass http://backend:8963;
2026-05-11 19:34:35 +08:00
proxy_http_version 1.1;
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;
}
location / {
try_files $uri $uri/ /index.html;
}
}