+ non-www redirect nginx script (with todo)
+ domain_name & refactored nginx variables for resolve connect of www-domain logic and redirect to or from * some installs have error after login to non-privileged user with starship $-symbol - correct escaped function for that + use separate domain for pma nginx config based on new domain_name variable (defined in nginx vars file) * update database example vars (use inventory dir path and bz2 by default) #861m7vaer Шаблон операционной системы на Debian 10
This commit is contained in:
17
playbooks/debops/files/etc/nginx/includes.d/non-www.conf
Normal file
17
playbooks/debops/files/etc/nginx/includes.d/non-www.conf
Normal file
@ -0,0 +1,17 @@
|
||||
error_page 418 = @nonwww;
|
||||
set $nonwww "";
|
||||
if ( $http_host ~* "^www\.") {
|
||||
set $nonwww "${nonwww}0";
|
||||
}
|
||||
if ( $nonwww ~* "^0+$" ) {
|
||||
return 418;
|
||||
}
|
||||
# TODO: map need moved to conf.d
|
||||
map $host $tld {
|
||||
default $host;
|
||||
'~^www\.(?<domain>.*)$' $domain;
|
||||
}
|
||||
location @nonwww {
|
||||
rewrite ^ https://$tld$request_uri permanent;
|
||||
}
|
||||
|
Reference in New Issue
Block a user