OS: Ubuntu Server 14
Nginx 1.6.2
PHP 5
This is my nginx configuration:
server {
listen 80 default_server;
listen [::]:80 default_server ipv6only=on;
root /usr/share/nginx/html;
index index.php index.html index.htm;
server_name 23.239.13.154;
location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
This configuration worked fine for 40 days.
Now, when I try execute some php script, the script is downloaded.
Nginx version: 1.4.6 and 1.6.2. Both versions have the same problem.
I tryed a lot of different approachs, but stil not working.
Why sometimes nginx is so hard?
I need to use Nginx + Wordpress.