Re: rewrite header http:// to https://

2015-03-30 Thread Abdelouahed Haitoute
Hello Lukas, Based on the haproxy documentation http://cbonte.github.io/haproxy-dconv/configuration-1.5.html#4-reqirep I have changed the configuration. Beside changing rspirep, I saw the traffic in wireshark and saw “GET

RE: rewrite header http:// to https://

2015-03-30 Thread Lukas Tribus
> I have the following configuration: > > frontend http1 127.0.0.10:1080 > rspirep ^Location:\ http://(.*):80(.*) Location:\ https://\1:443\2 > rspirep ^Location:\ http://(.*) Location:\ https://\1 > default_backend ssl1 > > backend ssl1 > server sslserver 192.168.68.100:443 ssl verify requ

Re: rewrite header http:// to https://

2015-03-30 Thread Abdelouahed Haitoute
By the way, just to be complete. The HTTP-traffic is proxied from a squid proxy server. Abdelouahed > Op 30 mrt. 2015, om 16:26 heeft Abdelouahed Haitoute het > volgende geschreven: > > Hello, > > I’m trying to rewrite the HTTP header, rewriting http to https. Using the > following article

rewrite header http:// to https://

2015-03-30 Thread Abdelouahed Haitoute
Hello, I’m trying to rewrite the HTTP header, rewriting http to https. Using the following article http://blog.haproxy.com/2013/02/26/ssl-offloading-impact-on-web-applications/ . I have the following configuration