webinoly/templates/template-site-php
Cristhian Martínez Ochoa e0f7aeaf03 templates and conf updated
Nginx Conf updated.
More protection to prevent DOS attacks.
Skip cache for more cart and sitemap plugins.
2018-06-22 08:53:29 -06:00

23 lines
493 B
Plaintext

# 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/php.conf;
include common/locations.conf;
include common/headers-http.conf;
include common/headers-html.conf;
include /var/www/domain.com/*-nginx.conf;
}
# WebinolyNginxServerEnd