Vps3 / nginx.conf
proti0070's picture
Update nginx.conf
df16e41 verified
raw
history blame contribute delete
348 Bytes
server {
listen 7860;
# Root e terminal
location / {
proxy_pass http://127.0.0.1:8080/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
proxy_read_timeout 86400;
proxy_send_timeout 86400;
}
}