Hi
I’m using HAProxy in order to load balance a wide variety of Webservers etc. - one server that’s being proxied via ActiveSync is an GroupWise Mobile Sync Server, that impersonates an Microsoft Active Sync server.
I have earlier proxied such a server via Apache with ProxyPass, and that worked with the following apache conf:
SSLEngine On
SSLProxyEngine On
SSLCertificateFile /root/.acme.sh//fullchain.cer
SSLCertificateKeyFile /root/.acme.sh//cert.key
ProxyRequests Off
SSLProxyCheckPeerCN off
SSLProxyCheckPeerExpire off
SSLProxyCheckPeerName off
SSLInsecureRenegotiation on
SSLProxyVerify none
SSLVerifyClient none
ProxyPass / https:///Microsoft-Server-ActiveSync
ProxyPassReverse / https:///Microsoft-Server-ActiveSync
I have found the following, but is uncertain if I have picked up the generel idea… and furthermore - the nomenclature seems to be deprecated.
reqirep ^(GET|POST|HEAD)\ /(.) \1\ /\2
acl response-is-redirect res.hdr(Location) -m found
rspirep ^Location:\ (http|https):///Microsoft-Server-ActiveSync/(.) Location:\ \1://mobilesync./\2 if response-is-redirect
Any ideas?
Best regards
'Adder
1 post - 1 participant