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.

14 lines
263 B

  1. error_page 418 = @www;
  2. set $www "0";
  3. if ( $http_host ~* "^www\.") {
  4. set $www "${www}1";
  5. }
  6. if ( $http_host ~* "^m\.") {
  7. set $www "${www}2";
  8. }
  9. if ( $www = "0" ) {
  10. return 418;
  11. }
  12. location @www {
  13. rewrite ^ $scheme://www.$host$request_uri? permanent;
  14. }