webinoly/templates/template-site-php
Cristhian Martínez Ochoa 572bf4b62b static files
Fixed issue with HSTS in static files.
Fixed EDD location not updated when s subfolder is created.
2021-12-02 18:28:32 -07:00

26 lines
522 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;
}
# WebinolyNginxServerEnd