webinoly/templates/template-site-php
Cristhian Martínez Ochoa 13d9025391 Initial release
First commit to public release.
2017-09-16 14:37:13 -06:00

20 lines
446 B
Plaintext

server {
listen 80;
listen [::]:80;
server_name domain.com www.domain.com;
access_log /var/log/nginx/domain.com.access.log we_log;
error_log /var/log/nginx/domain.com.error.log;
root /var/www/domain.com/htdocs;
index index.php index.html index.htm;
include common/php.conf;
include common/locations.conf;
include common/headers-http.conf;
include common/headers-html.conf;
#include /var/www/domain.com/conf/nginx/*.conf;
}