35 lines
1.3 KiB
Text
Executable file
35 lines
1.3 KiB
Text
Executable file
#=========================================================================#
|
|
# Default Web Domain Template #
|
|
# DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST WHEN REBUILDING DOMAINS #
|
|
# https://docs.hestiacp.com/admin_docs/web.html#how-do-web-templates-work #
|
|
#=========================================================================#
|
|
|
|
server {
|
|
listen %ip%:%proxy_ssl_port% ssl http2;
|
|
server_name %domain_idn% %alias_idn%;
|
|
ssl_certificate %ssl_pem%;
|
|
ssl_certificate_key %ssl_key%;
|
|
ssl_stapling on;
|
|
ssl_stapling_verify on;
|
|
error_log /var/log/%web_system%/domains/%domain%.error.log error;
|
|
|
|
include %home%/%user%/conf/web/%domain%/nginx.hsts.conf*;
|
|
|
|
location / {
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header Host $http_host;
|
|
proxy_http_version 1.1;
|
|
proxy_set_header Upgrade $http_upgrade;
|
|
proxy_redirect off;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
proxy_connect_timeout 300;
|
|
proxy_send_timeout 300;
|
|
proxy_read_timeout 300;
|
|
send_timeout 300;
|
|
proxy_pass http://127.0.0.1:9081;
|
|
}
|
|
|
|
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
|
}
|
|
|