allow gms to share the https port with other services like apache or tomcat
in apache we make it with named hosts
often there is only one external ip-adress
named hosts give a little bit more security
by: Bodo S. | over a year ago | Mobility Services
Comments
Either use a full fledged revers proxy to do so or use apache proxy to achieve this.
I use the following name based virtual host apache config:
...
SSLProxyEngine On
ServerName sync.<Internet Domain>
ServerAlias autodiscover.<Internet Domain>
ProxyRequests Off
<Proxy *>
Order deny,allow
Allow from all
</Proxy>
ProxyPass / https://<GMS Server IP>/
ProxyPassReverse / https://<GMS Server IP>/
...
Works fine since the datasync days