Skip to content

Instantly share code, notes, and snippets.

@lao9s
Created October 31, 2023 16:47
Show Gist options
  • Save lao9s/9bff32eb9ae5dfe313fbe6a99061be72 to your computer and use it in GitHub Desktop.
Save lao9s/9bff32eb9ae5dfe313fbe6a99061be72 to your computer and use it in GitHub Desktop.
# This block redirects www to non-www
server {
listen %ip%:%proxy_ssl_port% ssl;
server_name www.%domain_idn%;
ssl on;
ssl_certificate %ssl_pem%;
ssl_certificate_key %ssl_key%;
location / {
rewrite ^(.*) https://%domain_idn%$1 permanent;
}
}
server {
listen %ip%:%proxy_ssl_port%;
server_name %domain_idn% %alias_idn%;
ssl on;
ssl_certificate %ssl_pem%;
ssl_certificate_key %ssl_key%;
error_log /var/log/%web_system%/domains/%domain%.error.log error;
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;
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 ~ /\.ht {return 404;}
location ~ /\.svn/ {return 404;}
location ~ /\.git/ {return 404;}
location ~ /\.hg/ {return 404;}
location ~ /\.bzr/ {return 404;}
include %home%/%user%/conf/web/*nginx.%domain_idn%.conf_letsencrypt;
include %home%/%user%/conf/web/s%proxy_system%.%domain%.conf*;
}
# This block redirects www to non-www
server {
listen %ip%:%proxy_port%;
server_name www.%domain_idn%;
location / {
rewrite ^(.*) https://%domain_idn%$1 permanent;
}
}
server {
listen %ip%:%proxy_port%;
server_name %domain_idn% %alias_idn%;
location / {
rewrite ^(.*) https://%domain_idn%$1 permanent;
}
include %home%/%user%/conf/web/*nginx.%domain_idn%.conf_letsencrypt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment