From 534e83a218adf7048df7db1c95b8835e8886d6f9 Mon Sep 17 00:00:00 2001 From: andryyy Date: Wed, 19 Dec 2018 09:37:07 +0100 Subject: [PATCH] [Nginx] New WebServerResources path --- data/conf/nginx/site.conf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data/conf/nginx/site.conf b/data/conf/nginx/site.conf index 67d6f1a1..006cdea4 100644 --- a/data/conf/nginx/site.conf +++ b/data/conf/nginx/site.conf @@ -170,19 +170,19 @@ server { } location /SOGo.woa/WebServerResources/ { - alias /usr/lib/GNUstep/SOGo/WebServerResources/; + alias /usr/local/lib/GNUstep/SOGo/WebServerResources/; } location /.woa/WebServerResources/ { - alias /usr/lib/GNUstep/SOGo/WebServerResources/; + alias /usr/local/lib/GNUstep/SOGo/WebServerResources/; } location /SOGo/WebServerResources/ { - alias /usr/lib/GNUstep/SOGo/WebServerResources/; + alias /usr/local/lib/GNUstep/SOGo/WebServerResources/; } location (^/SOGo/so/ControlPanel/Products/[^/]*UI/Resources/.*\.(jpg|png|gif|css|js)$) { - alias /usr/lib/GNUstep/SOGo/$1.SOGo/Resources/$2; + alias /usr/local/lib/GNUstep/SOGo/$1.SOGo/Resources/$2; } include /etc/nginx/conf.d/site.*.custom;