From a4b75a0b7b0e2822a0cbfabe4b8a569b871ad401 Mon Sep 17 00:00:00 2001 From: Christoph Wurst Date: Mon, 26 Aug 2019 14:14:04 +0200 Subject: [PATCH] Also load bcmap files with nginx Signed-off-by: Christoph Wurst --- admin_manual/installation/nginx.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/admin_manual/installation/nginx.rst b/admin_manual/installation/nginx.rst index f27a965d6a6..df1bbbb0499 100644 --- a/admin_manual/installation/nginx.rst +++ b/admin_manual/installation/nginx.rst @@ -175,7 +175,7 @@ webroot of your nginx installation. In this example it is access_log off; } - location ~ \.(?:png|html|ttf|ico|jpg|jpeg)$ { + location ~ \.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ { try_files $uri /index.php$request_uri; # Optional: Don't log access to other assets access_log off; @@ -337,7 +337,7 @@ your nginx installation. access_log off; } - location ~ ^\/nextcloud\/.+[^\/]\.(?:png|html|ttf|ico|jpg|jpeg)$ { + location ~ ^\/nextcloud\/.+[^\/]\.(?:png|html|ttf|ico|jpg|jpeg|bcmap)$ { try_files $uri /nextcloud/index.php$request_uri; # Optional: Don't log access to other assets access_log off;