I want to achive following
http ://example.com >> http://172.14.2.7:80/
https ://example.com >> https://172.14.2.7:443/
https ://example.com:8443 >> https://172.14.2.7:8443/
How to configure reverseproxy option to properly redirect traffic based on ports?
VirtualHost {
RequiredBinding = Bind_443, Bind_80, Bind_8443
Hostname = example.com
ReverseProxy ^/.* http ://172.14.2.7:80/ 95 keep-alive
ReverseProxy ^/.* https ://172.14.2.7:443/ 95 keep-alive
ReverseProxy ^/.* https ://172.14.2.7:8443/ 95 keep-alive
}