|
|
@@ -1,31 +1,18 @@
|
|
|
server {
|
|
|
- listen %ip%:%proxy_port%;
|
|
|
- server_name %domain_idn% %alias_idn%;
|
|
|
- root /var/www/html;
|
|
|
- index index.php index.html index.htm;
|
|
|
- access_log /var/log/nginx/domains/%domain%.log combined;
|
|
|
- error_log /var/log/nginx/domains/%domain%.error.log error;
|
|
|
-
|
|
|
- ssl_stapling on;
|
|
|
- ssl_stapling_verify on;
|
|
|
-
|
|
|
+listen %ip%:%proxy_port%;
|
|
|
+server_name %domain_idn% %alias_idn%;
|
|
|
+index index.php index.html index.htm;
|
|
|
+access_log /var/log/nginx/domains/%domain%.log combined;
|
|
|
+error_log /var/log/nginx/domains/%domain%.error.log error;
|
|
|
+
|
|
|
+include %home%/%user%/conf/mail/%root_domain%/nginx.forcessl.conf*;
|
|
|
+
|
|
|
location ~ /\.(?!well-known\/) {
|
|
|
deny all;
|
|
|
return 404;
|
|
|
}
|
|
|
-
|
|
|
+
|
|
|
location / {
|
|
|
- try_files $uri $uri/ =404;
|
|
|
- alias /var/www/html;
|
|
|
+ proxy_pass http://%ip%:%web_port%;
|
|
|
}
|
|
|
-
|
|
|
- location /error/ {
|
|
|
- alias /var/www/document_errors/;
|
|
|
- }
|
|
|
-
|
|
|
- location @fallback {
|
|
|
- proxy_pass https://%ip%:%web_ssl_port%;
|
|
|
- }
|
|
|
-
|
|
|
- include %home%/%user%/conf/mail/%root_domain%/%proxy_system%.conf_*;
|
|
|
-}
|
|
|
+}
|