From 8825ed9effdf232ca485148eb4ab1920dec26add Mon Sep 17 00:00:00 2001
From: Stefano Alberto Russo <stefano.russo@gmail.com>
Date: Fri, 8 Apr 2022 23:17:50 +0200
Subject: [PATCH] Fixed issue that prevented encoded slashed to be processed by
 the Apache proxy.

---
 services/proxy/proxy-global.conf | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/services/proxy/proxy-global.conf b/services/proxy/proxy-global.conf
index 9290179..e0981db 100644
--- a/services/proxy/proxy-global.conf
+++ b/services/proxy/proxy-global.conf
@@ -13,6 +13,7 @@
     
     ProxyPass / http://webapp:8080/
     ProxyPassReverse / http://webapp:8080/ 
+    AllowEncodedSlashes NoDecode
        
 </VirtualHost>
 
@@ -32,9 +33,9 @@
     ServerName ${ROSETTA_HOST}
     ProxyPass / http://webapp:8080/
     ProxyPassReverse / http://webapp:8080/
+    AllowEncodedSlashes NoDecode
 
     SSLEngine on
-
     SSLCertificateFile /root/certificates/rosetta_platform/rosetta_platform.crt
     SSLCertificateKeyFile /root/certificates/rosetta_platform/rosetta_platform.key
     SSLCACertificateFile /root/certificates/rosetta_platform/rosetta_platform.ca-bundle
-- 
GitLab