From e14f08ddc69178f553513bc0f6dd8d4a6d1622e6 Mon Sep 17 00:00:00 2001 From: neobooru <50623835+neobooru@users.noreply.github.com> Date: Sun, 26 May 2019 01:27:30 +0200 Subject: [PATCH] docs: Fix issue with tags which contain slashes Apache wouldn't forward api calls which contain encoded slashes (%2F), which caused the api calls to tags with slashes (e.g. 'te/st') to fail with a 404 not found. See: - https://httpd.apache.org/docs/2.4/mod/core.html#AllowEncodedSlashes - https://serverfault.com/questions/715242/encode-url-wihthin-url-apache-mod-proxy-proxypass/715902#715902 --- INSTALL-OLD.md | 1 + 1 file changed, 1 insertion(+) diff --git a/INSTALL-OLD.md b/INSTALL-OLD.md index b092c3c..f34e390 100644 --- a/INSTALL-OLD.md +++ b/INSTALL-OLD.md @@ -211,6 +211,7 @@ server { DocumentRoot "/srv/www/booru/client/public" FallbackResource /index.htm + AllowEncodedSlashes On ```