php nginx file not found

Solutions on MaxInterview for php nginx file not found by the best coders in the world

showing results for - "php nginx file not found"
Emmanuel
25 Feb 2017
1location ~ \.php$ {
2            root           html;
3            fastcgi_pass   127.0.0.1:9000;
4            fastcgi_index  index.php;
5            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
6            include        fastcgi_params;
7}