Created
January 11, 2021 23:22
-
-
Save jaapmarcus/af59b6a2e1f1386fe54b3fd4e06d9c9c to your computer and use it in GitHub Desktop.
nocache.tpl
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_extentions%)$ { | |
root %docroot%; | |
access_log /var/log/%web_system%/domains/%domain%.log combined; | |
access_log /var/log/%web_system%/domains/%domain%.bytes bytes; | |
add_header Cache-Control no-cache; | |
expires 1s; | |
try_files $uri @fallback; | |
} | |
} | |
location /error/ { | |
alias %home%/%user%/web/%domain%/document_errors/; | |
} | |
location @fallback { | |
proxy_pass http://%ip%:%web_port%; | |
} | |
location ~ /\.ht {return 404;} | |
location ~ /\.svn/ {return 404;} | |
location ~ /\.git/ {return 404;} | |
location ~ /\.hg/ {return 404;} | |
location ~ /\.bzr/ {return 404;} | |
disable_symlinks if_not_owner from=%docroot%; | |
include %home%/%user%/conf/web/%domain%/nginx.conf_*; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_extentions%)$ { | |
root %sdocroot%; | |
access_log /var/log/%web_system%/domains/%domain%.log combined; | |
access_log /var/log/%web_system%/domains/%domain%.bytes bytes; | |
add_header Cache-Control no-cache; | |
expires 1s; | |
try_files $uri @fallback; | |
} | |
} | |
location /error/ { | |
alias %home%/%user%/web/%domain%/document_errors/; | |
} | |
location @fallback { | |
proxy_pass https://%ip%:%web_ssl_port%; | |
} | |
location ~ /\.ht {return 404;} | |
location ~ /\.svn/ {return 404;} | |
location ~ /\.git/ {return 404;} | |
location ~ /\.hg/ {return 404;} | |
location ~ /\.bzr/ {return 404;} | |
disable_symlinks if_not_owner from=%docroot%; | |
include %home%/%user%/conf/web/%domain%/nginx.ssl.conf_*; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment