Nginx Options
increate upload limit
- default is 1MB
reroute after reload
- avoid 404 - not found
Increasing timeout connection
- default 60s | good for keeping websocket connection alive
Nginx Configuration File
location /xyz {
proxy_read_timeout 1800;
proxy_connect_timeout 1800;
proxy_send_timeout 1800;
send_timeout 1800;
}
cors
- Add anywhere to allow all
Redirect
- from old domain to a new domain