3 server_name domain.tld;
4 root /srv/http/domain.tld;
6 index index.php index.html;
8 access_log logs/access.log;
9 error_log logs/error.log;
13 fastcgi_pass 127.0.0.1:9000;
15 #fastcgi_pass unix:/var/run/spawn-fcgi/spawn-fcgi.sock;
16 fastcgi_index index.php;
17 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
18 include /etc/nginx/conf/fastcgi_params;
20 include public_html.conf.example;