History: Nginx
Preview of version: 5
Nginx
http://www.stevestreeting.com/2012/05/24/apache-to-nginx-part-2/
PHP
NetBSD PHP
The original NetBSD 6.0 nginx.conf has got a line
Copy to clipboard
fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
This leads to a File not found error page, and the line must be replaced with
Copy to clipboard
fastcgi_param SCRIPT_FILENAME $request_filename;
or
Copy to clipboard
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
to enable PHP.
Debian PHP