Je viens d'installer nginx et php5-fpm et je veux le tester sur le port 82. J'appelle donc http://mysite.com:82/test555.php et je ne vois rien. Juste un écran blanc. Pas d'erreurs, pas d'avertissements, je ne vois rien du tout :) Il y a un journal d'erreurs de nginx et un journal d'erreurs de php5-fpm - mais ... Il n'y a aucune erreur. Je ne comprends pas ce qui ne va pas. Veuillez m'aider à le découvrir.
root@localhost:# echo "<?php phpinfo(); ?>" > /home/www/public_html/test555.php
root@localhost:# chmod 755 /home/www/public_html/test555.php
root@localhost:# cat /etc/nginx/sites-available/default
server {
listen 82;
root /home/www/public_html;
index index.php index.html;
server_name mysite.com;
access_log /var/log/nginx/nginx-access.com.log;
error_log /var/log/nginx/nginx-errors.com.log;
location ~ \.php$ {
fastcgi_pass unix:/var/run/php5-fpm.sock;
# fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REMOTE_ADDR $remote_addr;
}
}
root@localhost:# /etc/init.d/nginx status
* nginx is running
root@localhost:# /etc/init.d/php5-fpm status
* php5-fpm is running
root@localhost:# ls -la /var/run/php5-fpm.sock
srw-rw-rw- 1 root root 0 Feb 3 01:14 /var/run/php5-fpm.sock
root@localhost:# cat /var/log/php5-fpm.log
....
[03-Feb-2014 01:14:52] NOTICE: configuration file /etc/php5/fpm/php-fpm.conf test is successful
[03-Feb-2014 01:14:52] NOTICE: fpm is running, pid 19080
[03-Feb-2014 01:14:52] NOTICE: ready to handle connections
root@localhost:# cat /var/log/nginx/nginx-access.com.log
...ip... - - [03/Feb/2014:01:29:44 +0000] "GET /test555.php HTTP/1.1" 200 5 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10.8; rv:26.0) Gecko/20100101 Firefox/26.0"
root@localhost:# cat /var/log/nginx/nginx-errors.com.log
root@localhost:#
Que puis-je faire ensuite pour savoir ce qui se passe? Je vois que cela devrait bien fonctionner. Le script PHP me renvoie du code = 200 mais je ne vois pas la sortie. Il n'a jamais été appelé, car j'ai essayé d'y ajouter file_put_contents et il n'a vraiment jamais été appelé par nginx.
J'utilise Ubuntu 12.04 entièrement mis à jour aujourd'hui.
/var/log/nginx/nginx-errors.com.log
?