You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
269 B
20 lines
269 B
error_page 418 = @www;
|
|
|
|
set $www "0";
|
|
|
|
if ( $http_host ~* "^www\.") {
|
|
set $www "${www}1";
|
|
}
|
|
|
|
if ( $http_host ~* "^m\.") {
|
|
set $www "${www}2";
|
|
}
|
|
|
|
if ( $www = "0" ) {
|
|
return 418;
|
|
}
|
|
|
|
location @www {
|
|
rewrite ^ $scheme://www.$host$request_uri? permanent;
|
|
}
|
|
|