Hi all,
I'm trying to set up apache as a reverse proxy. Specifically I need to expose some internal sites using https and some using http (internally they can all use http).
I have started with just one internal site (hosting redmine). The following config seems to work for http -
If I navigate to http://redmine.DOMAIN.com then the redmine site loads. However, what I really need is to expose it as https://redmine.DOMAIN.com which I can't seem to get working no matter what I try.Code:<VirtualHost *:80> ServerName redmine.DOMAIN.com ProxyRequests Off ProxyPreserveHost On ProxyPass / http://192.168.1.14/ ProxyPassReverse / http://192.168.1.14/ </VirtualHost>
Does anyone know what changes I need to make to get this to work for https?
Thanks
Bookmarks