Re: [users@httpd] TLS 1.2 handshake problem?

2012-06-13 Thread aparna Puram
Check this blog.. http://blog.taddong.com/2011/10/tlssled-v12.html This might help you to find out if the openssl version that you have supports the TLSV1.2 On Wed, Jun 13, 2012 at 1:42 AM, Garrison, Jim (ETW) jim.garri...@nike.comwrote: -Original Message- From: Eric Covener

Re: [users@httpd] mod_proxy_ajp and mod_proxy_balancer - load balancing problem

2012-06-13 Thread Bongjae Chang
Hi Francesco, It seems (stickysession + loadbalacing)'s problem and it makes sense to me from another angle. At your user-sessions-01.png and user-sessions-03.png, the first user loop with sticky session was already a little unfair for 2 hours. 8 jboss instance's requests/traffic will be very

Re: [users@httpd] Access rules in an intranet

2012-06-13 Thread Luís de Sousa
Hi Anam, Apache complains about it: Directory not allowed here. I suppose it doesn't like having two nested Directory blocks. Thank you in any case. On 12 June 2012 20:54, Anam Ali Khan anamalik...@yahoo.com wrote: Try the following configuration: Directory phppgadmin location Order

Re: [users@httpd] Access rules in an intranet

2012-06-13 Thread Luís de Sousa
Hi Eric, For each access to the phppgadmin folder I'm getting this line at the error log: 158.64.4.14 - - [13/Jun/2012:08:51:21 +0200] GET /phppgadmin/ HTTP/1.1 403 510 - Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:13.0) Gecko/20100101 Firefox/13.0 It doesn't say much to me. Thank you for

[users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
Hello List, I need to proxy a DVR's built-in web server. I have this in httpd-ssl.conf: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPassReverse /Camera/ http://10.10.10.249:7000/ The DVR's web page gets displayed - but not all of it. Here is the snippet of the log file: 141.158.70.143 -

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Anne Blankert
If I understand your question correctly, think you need to configure: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi The ProxyPassReverse lines work only for redirects. /discover.cgi is not a redirect, but probably inside the content

RE: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Brian Gaber
Michael, I will try your buildaix.ksh script. I have been using IBM's compiler (xlc, cc_r, cc). On related question, Have you successfully compiled PHP against Apache 2.4.2? I have not. I have tried PHP 5.2, 5.3 and 5.4 and all fail at some point. Against Apache 2.2.x I have not

RE: [users@httpd] Attack on my reverse proxy server

2012-06-13 Thread Ruiyuan Jiang
Thanks Matus Actually we see a lot of POST command from lots different IPs around the world and our site was took down (very slow). -Original Message- From: Matus UHLAR - fantomas [mailto:uh...@fantomas.sk] Sent: Tuesday, June 12, 2012 7:05 AM To: users@httpd.apache.org Subject: Re:

Re: [users@httpd] Access rules in an intranet

2012-06-13 Thread Anam Ali Khan
Hi, Insert Directory block in virtual host container (configuration). It seems you have added in that area where Directory option is not allowed. -Anam From: Luís de Sousa luis.a.de.so...@gmail.com To: users@httpd.apache.org; Anam Ali Khan

Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
I had tested httpd with xlCv7 and xlCv11 and gcc 4.6.2. The important thing I noticed is that if you compile apr with gcc you must compile httpd with gcc as well, and v.v. Noone noticed when they were bundled I expect. I also have a buildaix.ksh for both apr and apr-util, but I do not know if

Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
forgot to mention: no have not tried to compile php against 2.4.x yet. Will setup a test machine soon to try. On Wed, Jun 13, 2012 at 7:44 PM, Michael Felt mamf...@gmail.com wrote: I had tested httpd with xlCv7 and xlCv11 and gcc 4.6.2. The important thing I noticed is that if you compile apr

Re: [users@httpd] Compiling/Installing httpd 2.4.2 on AIX 6.1 with gcc/g++

2012-06-13 Thread Michael Felt
started with php build. 1st real error is a syntax error in the embedded sqlite. After building an external version of sqlite (3.6.22 was the last one I had downloaded, haven not looked for a new one) I am stopping for the night. Will keep posted. Question: what are the minimum modules (e.g. gd,

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Janos Dohanics
On Wed, 13 Jun 2012 13:20:50 +0200 Anne Blankert anne.blank...@geodan.nl wrote: If I understand your question correctly, think you need to configure: ProxyPass /Camera/ http://10.10.10.249:7000/ ProxyPass /discover.cgi http://10.10.10.249:7000/discover.cgi The ProxyPassReverse lines

Re: [users@httpd] ProxyPass question

2012-06-13 Thread Daniel Ruggeri
On 6/13/2012 3:52 PM, Janos Dohanics wrote: Thanks Anne, this was what I needed. However, I got a new problem: I also want to protect the / directory with .htaccess, and that works fine. I assumed that this will also protect /Camera - evidently, not. Is there a way to force authentication