webinoly/templates/template-site-php
Cristhian Martínez Ochoa b3592fb9bf testing
Small fixes and improvements after testing.
2022-12-10 09:39:34 -07:00

27 lines
561 B
Text

# WebinolyNginxServerStart
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/auth.conf;
# WebinolyCustom
# WebinolyCustomEnd
include common/php.conf;
include common/locations.conf;
include common/header.conf;
include /var/www/domain.com/*-nginx.conf;
include /etc/nginx/conf.d/*.conf.srv;
}
# WebinolyNginxServerEnd