Welcome! Log In Create A New Profile

Advanced

upstream timed out (110: Connection timed out)

September 20, 2011 11:32AM
I installed on Debian Lenny nginx 0.6.32 and php-fpm and php file opens as well but went trying to do post request i get error in my /var/log/nginx/error.log
"upstream timed out (110: Connection timed out) while reading response header from upstream, ....."
My config of host
----------------------
server {
listen 80;
server_name domain.ru www.domain.ru;

set $www_folder '/var/www';
set $root_path '$www_folder';
root $root_path;
index index.htm index.html index.php;

location ~ \.php$ {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $root_path/$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $root_path;
fastcgi_pass php-fpm;
}
location @phpscripts {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $root_path/$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $root_path;
fastcgi_pass php-fpm;
}

location / {
default_type text/html;
root $root_path;

if (!-e $request_filename) {
return 404;
}

error_page 404 502 504 403 405 = @php;
}

location @php {
include /etc/nginx/fastcgi_params;
fastcgi_param SCRIPT_FILENAME $root_path/index.php;
fastcgi_pass php-fpm;
}

error_page 502 = /502.htm;
location = /502.htm {
root $www_folder;
}

location ~* \.(css|js|swf|ico|png|jpg|gif|jpeg|mp3|xml|html)$ {
root $root_path;
access_log off;
expires 30d;
}

location ~ /\.ht {
deny all;
}

location ~ /.svn/ {
deny all;
}

}
----------------------
and my /etc/nginx/nginx.conf
----------------------
worker_processes 6;
# worker_priority -1;

error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;

events {
worker_connections 5024;
# multi_accept on;
}

http {
include /etc/nginx/mime.types;

access_log /var/log/nginx/access.log;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;
tcp_nodelay on;

gzip on;
gzip_disable "MSIE [1-6]\.(?!.*SV1)";

# PHP-FPM (backend)
upstream php-fpm {
server 127.0.0.1:9000;
}


include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
}
----------------------
Subject Author Posted

upstream timed out (110: Connection timed out)

devdemi September 20, 2011 11:32AM

Re: upstream timed out (110: Connection timed out)

devdemi September 20, 2011 11:36AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 233
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready