RE: [squid-users] No SSL to SSL redirection problem

2009-02-24 Thread Roberto O. Fernández Crisial
¡ndez Crisial Cc: 'John Doe'; squid-users@squid-cache.org Subject: RE: [squid-users] No SSL to SSL redirection problem > I think url_rewrite_access is not supported by Squid 2.5 and supported on > Squid 2.6+. > > I was looking and I found this > http://www.squid-cache.org/mail-a

RE: [squid-users] No SSL to SSL redirection problem

2009-02-23 Thread Amos Jeffries
9 14:41 > To: squid-users@squid-cache.org > Subject: Re: [squid-users] No SSL to SSL redirection problem > > >> > > “http://...”, even after be matched with script, and makes an >> infinite loop >> > > requests (the script redirects to https but the Squid

RE: [squid-users] No SSL to SSL redirection problem

2009-02-23 Thread Roberto O. Fernández Crisial
-Original Message- From: John Doe [mailto:jd...@yahoo.com] Sent: Lunes 23 de Febrero de 2009 14:41 To: squid-users@squid-cache.org Subject: Re: [squid-users] No SSL to SSL redirection problem > > > “http://...”, even after be matched with script, and makes an infinite > > > l

Re: [squid-users] No SSL to SSL redirection problem

2009-02-23 Thread John Doe
> > > “http://...”, even after be matched with script, and makes an infinite > > > loop > > > requests (the script redirects to https but the Squid take it as http and > > > make the redirection again). What I can do? How can I make the “http” to > > > “https” to work fine? > > > > What is your

RE: [squid-users] No SSL to SSL redirection problem

2009-02-23 Thread Roberto O. Fernández Crisial
o: squid-users@squid-cache.org Subject: Re: [squid-users] No SSL to SSL redirection problem > I’m using Squid 2.5-STABLE14 with SSL support. I need to rewrite every url > with “http://...“ request to “https://...” so I use this script at the > redirect_program line: Old version... ^_^

Re: [squid-users] No SSL to SSL redirection problem

2009-02-23 Thread John Doe
> I’m using Squid 2.5-STABLE14 with SSL support. I need to rewrite every url > with “http://...“ request to “https://...” so I use this script at the > redirect_program line: Old version... ^_^ > #!/usr/bin/perl > > $|=1; > > while (<>) > { > @X = split; > $url = $X[0]; > >