update
This commit is contained in:
parent
d47d5e8a16
commit
f5045b61f6
45 changed files with 324 additions and 4 deletions
35
nginx/app-shlink.stpl
Executable file
35
nginx/app-shlink.stpl
Executable file
|
|
@ -0,0 +1,35 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_*;
|
||||||
|
}
|
||||||
|
|
||||||
39
nginx/app-shlink.tpl
Executable file
39
nginx/app-shlink.tpl
Executable file
|
|
@ -0,0 +1,39 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_port%;
|
||||||
|
server_name %domain_idn% %alias_idn%;
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
location ~* ^.+\.(%proxy_extensions%)$ {
|
||||||
|
root %docroot%;
|
||||||
|
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 {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.(?!well-known\/|file) {
|
||||||
|
deny all;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
0
nginx/arm.stpl
Normal file → Executable file
0
nginx/arm.stpl
Normal file → Executable file
0
nginx/arm.tpl
Normal file → Executable file
0
nginx/arm.tpl
Normal file → Executable file
0
nginx/cloudreve.stpl
Normal file → Executable file
0
nginx/cloudreve.stpl
Normal file → Executable file
0
nginx/cloudreve.tpl
Normal file → Executable file
0
nginx/cloudreve.tpl
Normal file → Executable file
46
nginx/default.stpl
Executable file
46
nginx/default.stpl
Executable file
|
|
@ -0,0 +1,46 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_pass https://%ip%:%web_ssl_port%;
|
||||||
|
location ~* ^.+\.(%proxy_extensions%)$ {
|
||||||
|
root %sdocroot%;
|
||||||
|
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 {
|
||||||
|
proxy_pass https://%ip%:%web_ssl_port%;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.(?!well-known\/|file) {
|
||||||
|
deny all;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
|
proxy_hide_header Upgrade;
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
39
nginx/default.tpl
Executable file
39
nginx/default.tpl
Executable file
|
|
@ -0,0 +1,39 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_port%;
|
||||||
|
server_name %domain_idn% %alias_idn%;
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
location ~* ^.+\.(%proxy_extensions%)$ {
|
||||||
|
root %docroot%;
|
||||||
|
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 {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.(?!well-known\/|file) {
|
||||||
|
deny all;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
0
nginx/dns.stpl
Normal file → Executable file
0
nginx/dns.stpl
Normal file → Executable file
0
nginx/filerun.stpl
Normal file → Executable file
0
nginx/filerun.stpl
Normal file → Executable file
0
nginx/filerun.tpl
Normal file → Executable file
0
nginx/filerun.tpl
Normal file → Executable file
0
nginx/gitbucket.stpl
Normal file → Executable file
0
nginx/gitbucket.stpl
Normal file → Executable file
0
nginx/gitbucket.tpl
Normal file → Executable file
0
nginx/gitbucket.tpl
Normal file → Executable file
0
nginx/gitea.stpl
Normal file → Executable file
0
nginx/gitea.stpl
Normal file → Executable file
0
nginx/gitea.tpl
Normal file → Executable file
0
nginx/gitea.tpl
Normal file → Executable file
0
nginx/gitlab.stpl
Normal file → Executable file
0
nginx/gitlab.stpl
Normal file → Executable file
0
nginx/gitlab.tpl
Normal file → Executable file
0
nginx/gitlab.tpl
Normal file → Executable file
0
nginx/imgjiji.stpl
Normal file → Executable file
0
nginx/imgjiji.stpl
Normal file → Executable file
0
nginx/imgjiji.tpl
Normal file → Executable file
0
nginx/imgjiji.tpl
Normal file → Executable file
0
nginx/kallithea.stpl
Normal file → Executable file
0
nginx/kallithea.stpl
Normal file → Executable file
0
nginx/kallithea.tpl
Normal file → Executable file
0
nginx/kallithea.tpl
Normal file → Executable file
42
nginx/kuma.stpl
Executable file
42
nginx/kuma.stpl
Executable file
|
|
@ -0,0 +1,42 @@
|
||||||
|
#=======================================================================#
|
||||||
|
# Default Web Domain Template #
|
||||||
|
# DO NOT MODIFY THIS FILE! CHANGES WILL BE LOST WHEN REBUILDING DOMAINS #
|
||||||
|
#=======================================================================#
|
||||||
|
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen %ip%:%proxy_ssl_port% ssl http2;
|
||||||
|
listen [::]:%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 $host;
|
||||||
|
proxy_pass http://127.0.0.1:3001/;
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
|
||||||
|
location /error/ {
|
||||||
|
alias %home%/%user%/web/%domain%/document_errors/;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
location ~ /\.ht {return 404;}
|
||||||
|
location ~ /\.svn/ {return 404;}
|
||||||
|
location ~ /\.git/ {return 404;}
|
||||||
|
location ~ /\.hg/ {return 404;}
|
||||||
|
location ~ /\.bzr/ {return 404;}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
40
nginx/kuma.tpl
Executable file
40
nginx/kuma.tpl
Executable file
|
|
@ -0,0 +1,40 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_port%;
|
||||||
|
listen [::]:%proxy_port%;
|
||||||
|
server_name %domain_idn% %alias_idn%;
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
location ~* ^.+\.(%proxy_extensions%)$ {
|
||||||
|
root %docroot%;
|
||||||
|
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 {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.(?!well-known\/|file) {
|
||||||
|
deny all;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
0
nginx/mail.stpl
Normal file → Executable file
0
nginx/mail.stpl
Normal file → Executable file
0
nginx/mail.tpl
Normal file → Executable file
0
nginx/mail.tpl
Normal file → Executable file
0
nginx/mastodon.stpl
Normal file → Executable file
0
nginx/mastodon.stpl
Normal file → Executable file
0
nginx/mastodon.tpl
Normal file → Executable file
0
nginx/mastodon.tpl
Normal file → Executable file
0
nginx/matrix.stpl
Normal file → Executable file
0
nginx/matrix.stpl
Normal file → Executable file
0
nginx/matrix.tpl
Normal file → Executable file
0
nginx/matrix.tpl
Normal file → Executable file
0
nginx/mirrors.stpl
Normal file → Executable file
0
nginx/mirrors.stpl
Normal file → Executable file
0
nginx/mirrors.tpl
Normal file → Executable file
0
nginx/mirrors.tpl
Normal file → Executable file
9
nginx/misskey.stpl
Normal file → Executable file
9
nginx/misskey.stpl
Normal file → Executable file
|
|
@ -20,7 +20,7 @@ server {
|
||||||
include %home%/%user%/conf/web/%domain%/nginx.hsts.conf*;
|
include %home%/%user%/conf/web/%domain%/nginx.hsts.conf*;
|
||||||
|
|
||||||
# Change to your upload limit
|
# Change to your upload limit
|
||||||
client_max_body_size 80m;
|
client_max_body_size 120m;
|
||||||
|
|
||||||
# Proxy to Node
|
# Proxy to Node
|
||||||
location / {
|
location / {
|
||||||
|
|
@ -38,7 +38,12 @@ server {
|
||||||
proxy_set_header Upgrade $http_upgrade;
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
proxy_set_header Connection $connection_upgrade;
|
proxy_set_header Connection $connection_upgrade;
|
||||||
|
|
||||||
add_header X-Cache $upstream_cache_status;
|
# Cache settings
|
||||||
|
# proxy_cache cache1;
|
||||||
|
# proxy_cache_lock on;
|
||||||
|
# proxy_cache_use_stale updating;
|
||||||
|
# proxy_force_ranges on;
|
||||||
|
# add_header X-Cache $upstream_cache_status;
|
||||||
}
|
}
|
||||||
|
|
||||||
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
||||||
|
|
|
||||||
0
nginx/misskey.tpl
Normal file → Executable file
0
nginx/misskey.tpl
Normal file → Executable file
0
nginx/portainer.stpl
Normal file → Executable file
0
nginx/portainer.stpl
Normal file → Executable file
0
nginx/portainer.tpl
Normal file → Executable file
0
nginx/portainer.tpl
Normal file → Executable file
4
nginx/s3.stpl
Normal file → Executable file
4
nginx/s3.stpl
Normal file → Executable file
|
|
@ -20,7 +20,7 @@ server {
|
||||||
|
|
||||||
root /home/mastodon/public/system;
|
root /home/mastodon/public/system;
|
||||||
|
|
||||||
set $s3_backend 'https://bucket-name.s3.nl-ams.scw.cloud';
|
set $s3_backend 'https://184img.s3.nl-ams.scw.cloud';
|
||||||
|
|
||||||
keepalive_timeout 30;
|
keepalive_timeout 30;
|
||||||
|
|
||||||
|
|
@ -37,7 +37,7 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
#resolver 9.9.9.9;
|
#resolver 9.9.9.9;
|
||||||
proxy_set_header Host 'bucket-name.s3.nl-ams.scw.cloud';
|
proxy_set_header Host '184img.s3.nl-ams.scw.cloud';
|
||||||
proxy_set_header Connection '';
|
proxy_set_header Connection '';
|
||||||
proxy_set_header Authorization '';
|
proxy_set_header Authorization '';
|
||||||
proxy_hide_header Set-Cookie;
|
proxy_hide_header Set-Cookie;
|
||||||
|
|
|
||||||
0
nginx/s3.tpl
Normal file → Executable file
0
nginx/s3.tpl
Normal file → Executable file
35
nginx/shlink.stpl
Executable file
35
nginx/shlink.stpl
Executable file
|
|
@ -0,0 +1,35 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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:8080;
|
||||||
|
}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
39
nginx/shlink.tpl
Executable file
39
nginx/shlink.tpl
Executable file
|
|
@ -0,0 +1,39 @@
|
||||||
|
#=========================================================================#
|
||||||
|
# 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_port%;
|
||||||
|
server_name %domain_idn% %alias_idn%;
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.forcessl.conf*;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
location ~* ^.+\.(%proxy_extensions%)$ {
|
||||||
|
root %docroot%;
|
||||||
|
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 {
|
||||||
|
proxy_pass http://%ip%:%web_port%;
|
||||||
|
}
|
||||||
|
|
||||||
|
location ~ /\.(?!well-known\/|file) {
|
||||||
|
deny all;
|
||||||
|
return 404;
|
||||||
|
}
|
||||||
|
|
||||||
|
include %home%/%user%/conf/web/%domain%/nginx.conf_*;
|
||||||
|
}
|
||||||
|
|
||||||
0
nginx/tz.stpl
Normal file → Executable file
0
nginx/tz.stpl
Normal file → Executable file
0
nginx/tz.tpl
Normal file → Executable file
0
nginx/tz.tpl
Normal file → Executable file
0
nginx/ws.stpl
Normal file → Executable file
0
nginx/ws.stpl
Normal file → Executable file
0
nginx/ws.tpl
Normal file → Executable file
0
nginx/ws.tpl
Normal file → Executable file
0
nginx/xray.stpl
Normal file → Executable file
0
nginx/xray.stpl
Normal file → Executable file
0
nginx/xray.tpl
Normal file → Executable file
0
nginx/xray.tpl
Normal file → Executable file
Loading…
Add table
Add a link
Reference in a new issue