nginx: configuration file /etc/nginx/nginx.conf test failed
server {
listen 8888;
server_name localhost1;
client_max_body_size 20M;
root /Users/brepex/Sites/yeticave;
location / {
index index.php index.html index.htm;
}
location ~ \.php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
# goes on same line:
fastcgi_param SCRIPT_FILENAME /Users/brepex/Sites/yeticave/$fastcgi_script_name;
include fastcgi_params;
}
}