privatebin/etc/nginx/sites-available/site.conf.tpl

22 lines
491 B
Smarty
Raw Normal View History

2017-03-28 17:46:14 +00:00
server {
listen 80 default_server;
root {{DOCUMENT_ROOT}};
index index.php index.html index.htm;
location / {
2017-03-28 19:28:32 +00:00
try_files $uri $uri/ /index.php$is_args$args;
2017-03-28 17:46:14 +00:00
}
location ~ \.php$ {
fastcgi_pass [::]:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
# Prevent exposing nginx + version to $_SERVER
fastcgi_param SERVER_SOFTWARE "";
}
}