Displaying 1 result from an estimated 1 matches for "send_timeout".
Did you mean:
  bind_timeout
  
2013 Sep 23
0
400 bad request
...503         = @maintenance;
    location @notfound {
      rewrite ^(.*)$ $scheme://$host permanent;
    }
    location @server_error {
        rewrite ^(.*)$ $scheme://$host permanent;
    }
    location @maintenance {
        rewrite ^(.*)$ $scheme://$host permanent;
    }
    sendfile on;
    send_timeout 300s;
    location / {
        proxy_pass http://gancx;
        proxy_redirect off;
        proxy_set_header   Host             $host;
        proxy_set_header   X-Real-IP        $remote_addr;
        proxy_set_header   X-Forwarded-For  $proxy_add_x_forwarded_for;
        charset UTF-8;
        c...