Files
bugis/conf/nginx-bugis.conf
Walter Oggioni 16dbd3a82a
All checks were successful
CI / Build Pip package (push) Successful in 16s
CI / Build Docker image (push) Successful in 3m33s
addded nginx confioguration file
2024-10-24 23:55:21 +08:00

14 lines
307 B
Plaintext

server {
listen 8080;
http2 on;
server_name localhost;
location / {
proxy_pass http://granian:8000;
proxy_http_version 1.1;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 60s;
}
}