avhub/nginx.example.conf
2025-03-11 11:14:17 +08:00

17 lines
517 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name _;
index index.php index.html index.htm default.php default.htm default.html;
root /app;
location /api/ {
proxy_pass http://127.0.0.1:8000/;
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;
proxy_http_version 1.1;
}
}