Hi,
Quote:
fastcgi_param SCRIPT_FILENAME;
|
The above is wrong. In a default php/fast-cgi setup, it should be
Code:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
And you also miss the rest of the fast-cgi parameters. Have a look at
this for details
Regards