File size: 260 Bytes
963175f
 
 
ac7a411
963175f
 
 
 
 
1
2
3
4
5
6
7
8
9
server {
    listen 80;
    location / {
        proxy_pass http://127.0.0.1:5000;
        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
    }
}