File size: 261 Bytes
963175f
d87c92c
963175f
d87c92c
963175f
 
 
 
d87c92c
1
2
3
4
5
6
7
8
9
10
server {
    listen 80;
    location / {
        proxy_pass http://127.0.0.1:7680;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_read_timeout 1800; # Set timeout to 1800 seconds, which is 30 minutes
    }
}