I'm trying to send requests to a docker image by using apache's proxy functionality. The request to the docker should look something like: https://127.0.0.1:8282/somepath/https://somedomain/someimage.jpg
but it is being forwarded like https://127.0.0.1:8282/somepath/https:/somedomain/someimage.jpg
(so missing one slash).
I think this is probably some default to prevent issues with directories accidentaly having double slashes, but can I somehow change some setting that makes it not do this? Or can I put it back using some rewrite regex magic?