Hi, I have the following problem
I have a reverse proxy listening on port 8443, accepting only https
The proxy passes on the requests to another apache server on
port 9000 (via http)
Within that server, self-referential URLs are generated.
I want those to be port 8443 using https.
I have tried
<VirtualHost _default_:9000>
Port 8443
...
</VirtualHost>
This makes the self-referential URLs to be 8443 but over http
Is there a way to tell Apache to make the self-referential URLs
to go over https?
I am afraid not, but would like a confirmation
Regards
Carlos