From aa6921dd5ac8a6668fbb1831ec5f32a73b699e89 Mon Sep 17 00:00:00 2001 From: Bas van der Vlies Date: Fri, 14 Aug 2020 11:24:27 +0200 Subject: [PATCH] Needed NoEsacpe (NE) option for apache Else %20 is esacped to %25%20 and we acan not rename "Untitled Folder' or opening files with spaces or other special chars fails. --- docs/source/reference/config-proxy.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/reference/config-proxy.md b/docs/source/reference/config-proxy.md index b1baecf8..836d7c5d 100644 --- a/docs/source/reference/config-proxy.md +++ b/docs/source/reference/config-proxy.md @@ -202,8 +202,8 @@ In case of the need to run the jupyterhub under /jhub/ or other location please httpd.conf amendments: ```bash - RewriteRule /jhub/(.*) ws://127.0.0.1:8000/jhub/$1 [P,L] - RewriteRule /jhub/(.*) http://127.0.0.1:8000/jhub/$1 [P,L] + RewriteRule /jhub/(.*) ws://127.0.0.1:8000/jhub/$1 [NE.P,L] + RewriteRule /jhub/(.*) http://127.0.0.1:8000/jhub/$1 [NE,P,L] ProxyPass /jhub/ http://127.0.0.1:8000/jhub/ ProxyPassReverse /jhub/ http://127.0.0.1:8000/jhub/