hestiacp/nginx/mail.tpl

40 lines
1.3 KiB
Smarty
Raw Normal View History

2022-05-11 09:20:52 +08:00
#=======================================================================#
# Default Web Domain Template #
# DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST WHEN REBUILDING DOMAINS #
#=======================================================================#
server {
2023-01-27 18:00:42 +08:00
listen %ip%:%proxy_port%;
2022-05-11 09:20:52 +08:00
server_name %domain_idn% %alias_idn%;
2023-01-27 18:00:42 +08:00
2022-05-11 09:20:52 +08:00
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
location / {
proxy_pass http://127.0.0.1:8010;
2023-01-27 18:00:42 +08:00
location ~* ^.+\.(%proxy_extensions%)$ {
root %docroot%;
2022-05-11 09:20:52 +08:00
access_log /var/log/%web_system%/domains/%domain%.log combined;
access_log /var/log/%web_system%/domains/%domain%.bytes bytes;
expires max;
try_files $uri @fallback;
}
}
location /error/ {
alias %home%/%user%/web/%domain%/document_errors/;
}
location @fallback {
2023-01-27 18:00:42 +08:00
proxy_pass http://%ip%:%web_port%;
2022-05-11 09:20:52 +08:00
}
location ~ /\.ht {return 404;}
location ~ /\.svn/ {return 404;}
location ~ /\.git/ {return 404;}
location ~ /\.hg/ {return 404;}
location ~ /\.bzr/ {return 404;}
2023-01-27 18:00:42 +08:00
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
2022-05-11 09:20:52 +08:00
}