Config:
<Virtualhost _default_:8080>
...
SSLProxyEngine on
ProxyRequests Off
ProxyPass / http://127.0.0.1:3000/
ProxyPassReverse / http://127.0.0.1:3000/
...
</Virtualhost>
Ok, i got a bit further by using mod_headers and mod_setenvif, but the
regexp expression seems to be wrong ?
SetEnvIfNoCase Location "^http\:(.*)$" HaveLocationHeader=$1
Header set Location "https:%{HaveLocationHeader}e"
env=HaveLocationHeader
UnsetEnv HaveLocationHeader
Got it fixed with :
Header edit Location "^http\:(.*)$" "https:$1"
Thx :P