Right, sorry for the previous, recent questions I've asked about nginx, this is just doing my head in.
I've enabled PHP using fastcgi_php and it works just fine, however, when I access to a PHP file, e.g.
(which applies to var/www/domain.com/www/info.php
)
Which includes the phpinfo()
and nginx throws an 404 error... if I access to a normal file, e.g.
It seems fine... how come nginx won't process with the PHP files?
This is the etc/nginx/sites-enabled/domain.com
.
server {
listen 80;
server_name domain.com *.domain.com;
access_log /var/www/domain.com/logs/nginx_access.log;
error_log /var/www/domain.com/logs/nginx_error.log;
root /var/www/domain.com/www/;
location / {
index index.html index.htm index.php;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /var/www/nginx-default;
}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
location ~ /\.ht {
deny all;
}
# Enable PHP
include /etc/nginx/fastcgi_php;
}
I have no clue what to do further...
EDIT:
My /etc/nginx/fastcgi_php
location ~ \.php$ {
fastcgi_pass unix:/var/run/php-fastcgi/php.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
You have fundamentally misunderstood how PHP works with Nginx. Your assumption that Apache == Nginx is incorrect. Nginx does not embed PHP within itself so if you try to access a PHP file then it's PHP throwing the 404 and not Nginx.
Sadly you have hidden your PHP configuration with
include /etc/nginx/fastcgi_php;
so I can't actually tell you if you've configured Nginx correctly, so please do provide your full configuration.Meanwhile, you can verify that PHP is actually throwing the 404 by checking the returned headers and checking if you have
X-Powered-By: PHP/5.3.8
. If this is present then you need to verify that you're sending PHP the proper file path via the SCRIPT_FILENAME fastcgi_param. If that one is correct then PHP cannot read the file due to improper permissions, this can either be read access on the file itself or execute access on any of the parent directories.First make sure you have installed php-cgi
apt-get install php5-cgi
. Next create a startup script for fastCGI PHP.Create the file
/etc/init.d/fastcgi-php
with the following content:Finally run the following commands (all as root if in Debian, or with
sudo
if in Ubuntu)and
Now check if the info.php file shows up correctly.
Otherwise please post the output of the domains error log and access log.