RE: [EMAIL PROTECTED] Issue with SSL configuration.

2008-10-30 Thread Boyle Owen
I think you're not getting responses because your question is a bit muddled... By .. able to use the SSL at the apache level .. I am assuming that https://server/filepath returns the file at DocumentRoot/filepath - i.e. you can get local content via HTTPS. Is this so? If so, all you need to do

[EMAIL PROTECTED] 502 proxy error

2008-10-30 Thread isha b
Team, When I try to access an application using reverse proxy, most of the time I will end up with below error. Anybody have an idea what will be causing the issue? After few refresh on the page I will get actual page but most of the times end up with below proxy error Proxy Error The proxy

RE: [EMAIL PROTECTED] 502 proxy error

2008-10-30 Thread Boyle Owen
From: isha b [mailto:[EMAIL PROTECTED] Sent: Thursday, October 30, 2008 12:47 PM To: users@httpd.apache.org; [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: [EMAIL PROTECTED] 502 proxy error

RE: [EMAIL PROTECTED] mod_ssl + basic auth

2008-10-30 Thread Jorge Medina
http://httpd.apache.org/docs/2.0/mod/mod_ssl.html#sslverifyclient Try moving SSLVerifyClient outside of the Directory, just in your VirtualHost. Also, seems that optional is not supported by all browsers. You must use require. From: Ricardo Ramos

[us...@httpd] Apache 1.3.33 + suexec upgrade

2008-10-30 Thread Julian Grunnell
Hi - I'm trying to upgrade a 1.3.33 Apache server to 1.3.41 with SuEXEC and am struggling with SuEXEC, the server is several years old with no documentation or any of the old software / config logs at all. I've got Apache installing just fine with suexec but it's the --suexec-docroot +

RE: [EMAIL PROTECTED] 502 proxy error

2008-10-30 Thread Mehta, Anish
Are you using mod_proxy_ajp and load balancing between backend servers? We used to see this error a lot but when we added timeout parameter to BalancerMember directive if went away. You may also want to try this or add the same parameter to ProxyPass directive (timeout=300). Regards, AM

Re: [EMAIL PROTECTED] mod_ssl + basic auth

2008-10-30 Thread Ricardo Ramos
That doesn't seem to work for me. I mean, it asks me for the certificate, however if the certificate is accepted, it will still check if it is inside the lan or if the user/pass is ok. What I really wanted would be if a valid certificate is received, then promptly accept the client. Yeah I read

RE: [EMAIL PROTECTED] Issue with SSL configuration.

2008-10-30 Thread Mehta, Anish
Define following in your httpd.conf. This will change the URL to HTTPS even if someone types in HTTP. Listen *:80 VirtualHost *:80 ServerAdmin [EMAIL PROTECTED] RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://%{SERVER_NAME}/$1

RE: [EMAIL PROTECTED] mod_auth_ldap

2008-10-30 Thread Jorge Medina
I'm not sure I am understanding your question: By for another domain, do you mean another site ? If so, use VirtualHost to define each domain and use the appropiate LDAP server for each one. If you want to authenticate users against two unrelated LDAP domains, then you may look if there is a

RE: [EMAIL PROTECTED] mod_ssl + basic auth

2008-10-30 Thread Jorge Medina
Maybe you need to specify SSLOptions +FakeBasicAuth http://httpd.apache.org/docs/2.2/en/ssl/ssl_howto.html#accesscontrol http://httpd.apache.org/docs/2.2/en/ssl/ssl_howto.html#accesscontrol From: Ricardo Ramos [mailto:[EMAIL PROTECTED] Sent: Thursday, October

Re: AW: AW: [EMAIL PROTECTED] Stripping or setting certain http response headerrs

2008-10-30 Thread Harald Falkenberg
Hi, thank you for this information. Yes, this works so far. Unfortunately the env=... switch is not available for mod_expires derictives. Have you an idea how to generate a valid time stamp for the expires response header? %d and %t seem not to help here? I would like generate something like:

[us...@httpd] q: transfer encoding request header te: chunked

2008-10-30 Thread Harald Falkenberg
Hi, I found that some agents sent http request headers as follows: te: chunked questions: 1. What is the meaning of this header? I still didn't found any description of it. 2. it looks like that this requests header (te: chunked) leads to passing by request in respect to

Re: [us...@httpd] q: transfer encoding request header te: chunked

2008-10-30 Thread Eric Covener
On Thu, Oct 30, 2008 at 12:24 PM, Harald Falkenberg [EMAIL PROTECTED] wrote: Hi, I found that some agents sent http request headers as follows: te: chunked questions: 1. What is the meaning of this header? I still didn't found any description of it. rfc 2616 section 3.6.1

Re: [us...@httpd] q: transfer encoding request header te: chunked

2008-10-30 Thread Tom Evans
On Thu, 2008-10-30 at 17:24 +0100, Harald Falkenberg wrote: Hi, I found that some agents sent http request headers as follows: te: chunked For some secret definition of some? Can we know which UAs send this? questions: 1. What is the meaning of this header? I still didn't found

Re: [EMAIL PROTECTED] Issue with SSL configuration.

2008-10-30 Thread Vasanth Kumar ravi
Alright. Let me make the requirements clear then. Currently we have an application hosted in weblogic and we do not have any web servers in the setup. This application is accessed by the url http://ip address/OPSWeb/neo. I have setup an Apache 2.0.63 web server in front of th weblogic , which

Re: [EMAIL PROTECTED] Issue with SSL configuration.

2008-10-30 Thread Eric Covener
On Thu, Oct 30, 2008 at 9:31 PM, Vasanth Kumar ravi [EMAIL PROTECTED] wrote: Alright. Let me make the requirements clear then. Currently we have an application hosted in weblogic and we do not have any web servers in the setup. This application is accessed by the url http://ip

Re: [EMAIL PROTECTED] Issue with SSL configuration.

2008-10-30 Thread Vasanth Kumar ravi
The application server has a plugin for apache and that has been installed in the apache . Apache is able to talk to the weblogic using http but not using https. as i mentioned earlier, i have not hosted any application files in the apache. the apache should act to proxy/pass all the requests to

[EMAIL PROTECTED] Re: mod_auth_ldap

2008-10-30 Thread Juan Pablo Roig
Yes the question is: two diferents ldaps. I've solved this issue with mod_authnz_external Thanks 2008/10/30, Jorge Medina [EMAIL PROTECTED]: I'm not sure I am understanding your question: By for another domain, do you mean another site ? If so, use VirtualHost to define each domain and use