Pound doesn't change urls. It may only rewrite hostnames, if you request it do so. (RewriteLocation/RewriteDestination options)
It's more likely your code is trying to redirect somewhere... Like from http to https,but it never sees the https request come in. (Because pound is terminating ssl) Many redirect loops start that way. Joe > -----Original Message----- > From: MondoEventi [mailto:[email protected]] > Sent: Thursday, March 07, 2013 3:11 AM > To: [email protected] > Subject: [Pound Mailing List] Pound https url changed > > I've installed pound 2.6 with 2 backend . > > I using https/https and tomcat . > > At home page of my site it work fine . > > In this page there is a link like this : > > http://POUNDSERVER/APPLICATION/app.jsp?var=14 > > when I click on this link pund reply with : > > http://POUNDSERVER/APPLICATION/app.jsp?&&&&&&&&&&var=14 > > But if I copy a link its correct > > # Pound log : > pound: <CLIENT_IP> GET /APPLICATION/app.jsp?&&&&&&&&&&var=14 HTTP/1.1 > - HTTP/1.1 302 Moved Temporarily (<poundserver_hostname>/- -> > <BACKEND_IP>:443) 0.004 sec > > # Pound configuration > > User "pound" > Group "pound" > Control "/var/lib/pound/pound.cfg" > > LogLevel 2 > Alive 1 > > > ListenHTTP > Address 0.0.0.0 > Port 80 > HeadRemove "X-Forwarded-For" > > End > > ListenHTTPS > Address 0.0.0.0 > Port 443 > Cert "/etc/ssl/poundcert.pem" > AddHeader "X-Forwarded-Proto: https" > HeadRemove "X-Forwarded-Proto" > > HeadRemove "X-Forwarded-For" > > > End > > Service > > HeadRequire "Host: .*<POUND_HOSTNAME>.*" > > > BackEnd > Address 172.16.10.10 > Port 80 > End > > BackEnd > Address 172.16.10.10 > Port 443 > HTTPS > End > > > > BackEnd > Address 172.16.10.11 > Port 80 > End > > BackEnd > Address 172.16.10.11 > Port 443 > HTTPS > End > > > > Session > Type Cookie > ID "JSESSIONID" > ID "checkCookiesTestCookie" > TTL 1800 > End > > End > > ### > > Thanks > > Paolo > > -- > To unsubscribe send an email with subject unsubscribe to > [email protected]. > Please contact [email protected] for questions. -- To unsubscribe send an email with subject unsubscribe to [email protected]. Please contact [email protected] for questions.
