Browse Source

[Nginx] Redirect /S|sogo* to /SOGo

andryyy 5 years ago
parent
commit
ce15dda990
1 changed files with 4 additions and 0 deletions
  1. 4 0
      data/conf/nginx/includes/site-defaults.conf

+ 4 - 0
data/conf/nginx/includes/site-defaults.conf

@@ -166,6 +166,10 @@
     client_max_body_size 0;
     client_max_body_size 0;
   }
   }
 
 
+  location ~ /(?:S|s)ogo {
+    return 301 $client_req_scheme://$http_host/SOGo;
+  }
+
   location ^~ /SOGo {
   location ^~ /SOGo {
     include /etc/nginx/conf.d/sogo_proxy_auth.active;
     include /etc/nginx/conf.d/sogo_proxy_auth.active;
     include /etc/nginx/conf.d/sogo.active;
     include /etc/nginx/conf.d/sogo.active;