NGINX and php-fpm -> HTML runs, php gives 502

timofrenzel nginx-forum at nginx.us
Wed Oct 23 14:13:36 UTC 2013


hi,
apparently have some problems with it so I am not better .
Unfortunately, past attempts have brought nothing to use the information
from other posts .
And so , I really hope that this one can help ^ ^

So, I have NGINX installed and php - fpm .

I call on the index.html , everything works .
I call on the index.php , I get back only n 502.

For various reasons which I will not name here on, is not the www directory
www in / var / www but in /
then there are a host folder.
so :

/ www / devubuntu.loc
/ www / devubuntu.loc / index.html
/ www / devubuntu.loc / index_test.php


My default conf looks like this:

[code]
server {
listen 80;
server_name devubuntu.loc;

access_log /www/log/access/devubuntu.loc.access.log;
error_log /www/log/error/devubuntu.loc.error.log;

location / {
root /www/devubuntu.loc;
index index.html index.htm, index.php;
}

location ~ \.php$ {

root /www/devubuntu.loc;
#fastcgi_pass 127.0.0.1:9000;
#fastcgi_pass unix:/var/run/php**5**-fpm.sock;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
[/code]


Does anyone here have an idea ?
Timo

Posted at Nginx Forum: http://forum.nginx.org/read.php?2,244039,244039#msg-244039



More information about the nginx mailing list