Discussion:
php-fpm and nginx return "The page you are looking for is temporarily unavailable. Please try again later. "
abcomp01
2011-11-08 09:25:57 UTC
Permalink
php-fpm and nginx return "The page you are looking for is temporarily
unavailable. Please try again later. "

call http://173.212.207.146/upload/info.php

location ~ \.php$ {
root /home/admin/18loadnet;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/admin/info.php;
include /etc/nginx/fastcgi_params;
}

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,217967,217967#msg-217967
Igor Sysoev
2011-11-08 09:47:21 UTC
Permalink
Post by abcomp01
php-fpm and nginx return "The page you are looking for is temporarily
unavailable. Please try again later. "
call http://173.212.207.146/upload/info.php
location ~ \.php$ {
root /home/admin/18loadnet;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/admin/info.php;
include /etc/nginx/fastcgi_params;
}
Please look in error_log for reason of this issue.
--
Igor Sysoev
Maxim Dounin
2011-11-08 09:47:42 UTC
Permalink
Hello!
Post by abcomp01
php-fpm and nginx return "The page you are looking for is temporarily
unavailable. Please try again later. "
call http://173.212.207.146/upload/info.php
location ~ \.php$ {
root /home/admin/18loadnet;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/admin/info.php;
include /etc/nginx/fastcgi_params;
}
Try looking into error_log, it likely has explanation of the error
returned.

Maxim Dounin
abcomp01
2011-11-08 09:54:57 UTC
Permalink
2011/11/08 02:53:31 [error] 3983#0: *513879 recv() failed (104:
Connection reset by peer) while reading response header from upstream,
client: 171.98.8.155, server: _, request: "GET /upload/info.php
HTTP/1.1", upstream: "fastcgi://127.0.0.1:9000", host:
"173.212.207.146"

?

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,217967,217973#msg-217973
Maxim Dounin
2011-11-08 10:00:23 UTC
Permalink
Hello!
Post by abcomp01
Connection reset by peer) while reading response header from upstream,
client: 171.98.8.155, server: _, request: "GET /upload/info.php
"173.212.207.146"
?
Backend (php-fpm) sent RST (i.e. terminated connection abnormally)
before replying anything to nginx. Most likely it died. Try
looking into php-fpm / system logs for more details.

In any case it doesn't look like nginx issue.

Maxim Dounin
Keith
2011-11-09 01:27:47 UTC
Permalink
Hi,
I was getting the same error earlier today. I eventually
figured out that for me it was the mssql (NOT MySql) extension that was
messing things up. A phpinfo() page would work fine but the mssql data
import script that I was writing wouldn't work through a browser
request. I noticed some Segfault errors in one of the logs.

My script ran fine from the command line but just not through php-fpm.
Didn't try fast-cgi though.

Keith.
Post by abcomp01
php-fpm and nginx return "The page you are looking for is temporarily
unavailable. Please try again later. "
call http://173.212.207.146/upload/info.php
location ~ \.php$ {
root /home/admin/18loadnet;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /home/admin/info.php;
include /etc/nginx/fastcgi_params;
}
Posted at Nginx Forum: http://forum.nginx.org/read.php?2,217967,217967#msg-217967
_______________________________________________
nginx mailing list
http://mailman.nginx.org/mailman/listinfo/nginx
Loading...