I just installed nginx and php fastcgi about an hour ago, and after reading examples of a quick starting configuration, and the nginx documentation etc, I just cant get it to wo
Fundamentally you hadn't declare location which is what nginx uses to bind URL with resources.
server { listen 80; server_name localhost; access_log logs/localhost.access.log main; location / { root /var/www/board/public; index index.html index.htm index.php; } }