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

25 lines
629 B
Plaintext
Raw Normal View History

2017-03-28 17:46:14 +00:00
server {
listen 8080 default_server;
2017-03-28 17:46:14 +00:00
root /var/www;
2017-03-28 17:46:14 +00:00
index index.php index.html index.htm;
location / {
include /etc/nginx/location.d/*.conf;
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$ {
include /etc/nginx/location.d/*.conf;
fastcgi_pass unix:/run/php-fpm.sock;
2017-03-28 17:46:14 +00:00
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 "";
}
include /etc/nginx/server.d/*.conf;
2017-03-28 17:46:14 +00:00
}