! 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
{CODE()}fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;{CODE}
This leads to a __File not found__ error page, and the line must be replaced with
{CODE()}fastcgi_param SCRIPT_FILENAME $request_filename;{CODE}
or
{CODE()}fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;{CODE}
to enable PHP.
!! Debian PHP
!! PHP General
((Nginx-php-fpm))