Re: [us...@httpd] Redirection based on HTTP Host header

2010-08-24 Thread William A. Rowe Jr.
On 8/19/2010 6:37 PM, pratyoosh sharma wrote: You can use mod_rewrite to detect a HTTP Header, compare the value redirect to a local port if the condition is satisfied RewriteCond %{HTTP:HTTP_X_SOMEHEADER} RewriteRule ^/(.*)$ http://127.0.0.1:14333/$1 [P,L] See also mod_vhost_alias

[us...@httpd] Redirection based on HTTP Host header

2010-08-19 Thread Frank Zappo
Good day, Is there a way to specify directives to scan the HTTP Host header for specific attributes, and then redirect based upon the value of those attributes? For example, I'd like my server to be configured such that my client can open an HTTPS session to the same address/port regardless

Re: [us...@httpd] Redirection based on HTTP Host header

2010-08-19 Thread MegaBrutal
Hello, Just to clarify it: so you want to accept HTTP and HTTPS connections on the same TCP port? MegaBrutal 2010/8/19 Frank Zappo frank_za...@hotmail.com: Good day, Is there a way to specify directives to scan the HTTP Host header for specific attributes, and then redirect based upon the

RE: [us...@httpd] Redirection based on HTTP Host header

2010-08-19 Thread Frank Zappo
To: users@httpd.apache.org Subject: Re: [us...@httpd] Redirection based on HTTP Host header Hello, Just to clarify it: so you want to accept HTTP and HTTPS connections on the same TCP port? MegaBrutal 2010/8/19 Frank Zappo frank_za...@hotmail.com: Good day, Is there a way

Re: [us...@httpd] Redirection based on HTTP Host header

2010-08-19 Thread pratyoosh sharma
To: users@httpd.apache.org Subject: Re: [us...@httpd] Redirection based on HTTP Host header Hello, Just to clarify it: so you want to accept HTTP and HTTPS connections on the same TCP port? MegaBrutal 2010/8/19 Frank Zappo frank_za...@hotmail.com: Good day, Is there a way

Re: [us...@httpd] Redirection based on HTTP Host header

2010-08-19 Thread Eric Covener
On Thu, Aug 19, 2010 at 5:02 PM, Frank Zappo frank_za...@hotmail.com wrote: Thanks for responding, and apologies if I wasn't very clear. I have a server that is both RSA and ECC capable.  I want the server to accept HTTPS connections from both RSA and ECC clients on the same TCP port.