瀏覽代碼

[SOGo, Nginx] Deny access to some extensions from SOGo web ui to mitigate security concerns

andryyy 4 年之前
父節點
當前提交
6a8aa699d9
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      data/conf/nginx/includes/site-defaults.conf

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

@@ -176,6 +176,10 @@
   }
 
   location ^~ /SOGo {
+    location ~* ^/SOGo/so/.*\.(xml|js|html|xhtml)$ {
+      return 403;
+      break;
+    }
     include /etc/nginx/conf.d/sogo_proxy_auth.active;
     include /etc/nginx/conf.d/sogo.active;
     proxy_set_header X-Real-IP $remote_addr;