Re: [users@httpd] URL redirection

2016-12-15 Thread Rich Bowen
On 12/15/2016 10:19 AM, John Williams wrote: > I need to redirect the contents of a URL site from (say) zzz.com to > (say) yyy.com/somepage.html. I need to have port 80 and port 443 > redirected. So the requirement is: > > http://zzz.com/ redirect to http://yyy.com/somepage.html:25999 > AND >

[users@httpd] URL redirection

2016-12-15 Thread John Williams
I need to redirect the contents of a URL site from (say) zzz.com  to (say) yyy.com/somepage.html.  I need to have port 80 and port 443 redirected.  So the requirement is: http://zzz.com/ redirect to http://yyy.com/somepage.html:25999ANDhttps://zzz.com/ redirect to https://yyy.com/somepage.html:

Re: [users@httpd] mod_proxy_balancer and multiple (dynamic) backends?

2016-12-15 Thread Jim Jagielski
The page is just one way to do it... It is just an interface to the series of GETs required. I use it w/ curl all the time. > On Dec 15, 2016, at 3:11 AM, Kristian Rink wrote: > > Hi there; > > and thanks for your feedback. :) > > Am Mittwoch, den 14.12.2016, 07:43 -0500 schrieb Jim Jagielski:

[users@httpd] SSL_CLIENT_SAN IP addr validation

2016-12-15 Thread Andrei Ivanov
Hi, I'm trying to validate incoming requests by comparing the request IP to the IP addresses provided in the client certificate subjectAltName. Searching around, I found http://wiki.cacert.org/ApacheServerClientCertificateAuthentication, which gives an example using the email address: SSLRequire

Re: [users@httpd] mod_proxy_balancer and multiple (dynamic) backends?

2016-12-15 Thread Kristian Rink
Hi there; and thanks for your feedback. :) Am Mittwoch, den 14.12.2016, 07:43 -0500 schrieb Jim Jagielski: > I think that balancer-manager is exactly what you are looking for. > >   http://httpd.apache.org/docs/2.4/howto/reverse_proxy.html#manager > Yes, I already stumbled across this - but th