|
@@ -1,33 +1,21 @@
|
|
|
server {
|
|
server {
|
|
|
- listen %ip%:%proxy_ssl_port% ssl http2;
|
|
|
|
|
- server_name %domain_idn% %alias_idn%;
|
|
|
|
|
- root /var/www/html;
|
|
|
|
|
|
|
+ listen %ip%:%proxy_ssl_port% ssl http2;
|
|
|
|
|
+ server_name %domain_idn% %alias_idn%;
|
|
|
index index.php index.html index.htm;
|
|
index index.php index.html index.htm;
|
|
|
access_log /var/log/nginx/domains/%domain%.log combined;
|
|
access_log /var/log/nginx/domains/%domain%.log combined;
|
|
|
error_log /var/log/nginx/domains/%domain%.error.log error;
|
|
error_log /var/log/nginx/domains/%domain%.error.log error;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
ssl_certificate %ssl_pem%;
|
|
ssl_certificate %ssl_pem%;
|
|
|
ssl_certificate_key %ssl_key%;
|
|
ssl_certificate_key %ssl_key%;
|
|
|
ssl_stapling on;
|
|
ssl_stapling on;
|
|
|
ssl_stapling_verify on;
|
|
ssl_stapling_verify on;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
location ~ /\.(?!well-known\/) {
|
|
location ~ /\.(?!well-known\/) {
|
|
|
deny all;
|
|
deny all;
|
|
|
return 404;
|
|
return 404;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
location / {
|
|
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_*;
|
|
|
|
|
-}
|
|
|
|
|
|
|
+}
|