Re: [users@httpd] [RHEL6.2] SSL handshake failure

2012-03-18 Thread Aubrey Li
Thanks a ton, Igor! I copied SSLCiperSuite in the conf file of httpd_2.2.21, and it works! Cheers, -Aubrey #SSLCipherSuite HIGH:MEDIUM:!aNULL:!MD5 SSLCipherSuite ALL:!ADH:!EXPORT56:RC4+RSA:+HIGH:+MEDIUM:+LOW:+SSLv2:+EXP:+eNULL On Mon, Mar 19, 2012 at 5:50 AM, Igor Cicimov wrote: > "[Mon Mar 19

Re: [users@httpd] httpd crashes with segmentation fault: Incompatible libpng version in application and library

2012-03-18 Thread Igor Cicimov
LoadFile On Mon, Mar 19, 2012 at 12:27 PM, Lenin wrote: > Thanks for your reply. > > I've tried he first method before, no luck. > > For the second one, I cannot find any useful information about the > 'FileLoad' directive, neither from Google nor the official documentation. > > Are you sure you

Re: [users@httpd] httpd crashes with segmentation fault: Incompatible libpng version in application and library

2012-03-18 Thread Lenin
Thanks for your reply. I've tried he first method before, no luck. For the second one, I cannot find any useful information about the 'FileLoad' directive, neither from Google nor the official documentation. Are you sure you didn't misspell the directive ? 2012/3/19 Igor Cicimov > Two things

Re: [users@httpd] httpd crashes with segmentation fault: Incompatible libpng version in application and library

2012-03-18 Thread Igor Cicimov
Two things that come to my mind atm: 1. Link the existing “libpng.so” installed to the one you compiled or 2. Try using FileLoad directive in the httpd.conf to load the correct "libpng.so" file Igor On Sun, Mar 18, 2012 at 10:24 PM, Lenin wrote: > Hi, > > I've compiled httpd 2.2.21 and php 5.3

[users@httpd] Re: Apache 2.2 on Windows refuses to process more than 5 requests from one client concurrently

2012-03-18 Thread Yakov Shapiro
Hello there, A coworker of mine was able to find the solution on Google. if you add PerlInterpMax 20 to the httpd.conf, then all 20 concurrent requests will get processed simultaneously. The default value for PerlInterpMax is 5, which means that Apache will not run more than 5 Perl interpreters

Re: [users@httpd] Issue with trailing slashes after rewrite

2012-03-18 Thread Nala Gnirut
On Sun, Mar 18, 2012 at 11:16 PM, Eric Covener wrote: > The P flag is explicitly used to proxy. If you want to redirect, > substitute a full URL and use the R flag instead. > I need to dynamically change DocumentRoot for some subdomains pointing to the same local path. This rule works (almost)

Re: [users@httpd] Issue with trailing slashes after rewrite

2012-03-18 Thread Eric Covener
On Sun, Mar 18, 2012 at 5:56 PM, Nala Gnirut wrote: > After adapting to my folder structure it should look like > > RewriteCond %{HTTP_HOST} ^(.*)\.(.*)\.(.*)$ > RewriteRule ^/(.*) /%1/$1 [P] > > Unfortunately neither your original suggestion nor my version seem to cause > any redirection. The P

Re: [users@httpd] Issue with trailing slashes after rewrite

2012-03-18 Thread Nala Gnirut
After adapting to my folder structure it should look like RewriteCond %{HTTP_HOST} ^(.*)\.(.*)\.(.*)$ RewriteRule ^/(.*) /%1/$1 [P] Unfortunately neither your original suggestion nor my version seem to cause any redirection. On Sat, Mar 17, 2012 at 3:09 PM, Igor Cicimov wrote: > Correction > >

Re: [users@httpd] [RHEL6.2] SSL handshake failure

2012-03-18 Thread Igor Cicimov
"[Mon Mar 19 06:51:12 2012] [info] SSL Library Error: 336109761 error:1408A0C1:SSL routines:SSL3_GET_CLIENT_ HELLO:no shared cipher Too restrictive SSLCipherSuite or using DSA server certificate?" Check the SSLCipherSuite directive in your SSL host as the error says it might be too restrictive. Tr

Re: [users@httpd] site loads correctly using lan ip, but not from other computers on same lan

2012-03-18 Thread Igor Cicimov
Drop the cookie thing and replace localhost with 192.168.1.5 in the proxy lines On Mar 18, 2012 1:12 PM, "Serge Fonville" wrote: > Also, > > does your URL change when you visit the pages. > > Since I'd expect proxypass and proxypassreverse to refer to the same url > > Kind regards/met vriendelij

Re: [users@httpd] [RHEL6.2] SSL handshake failure

2012-03-18 Thread Aubrey Li
Here is what I got when I put the loglevel to debug in httpd.conf === [Mon Mar 19 06:51:12 2012] [debug] ssl_engine_kernel.c(1866): OpenSSL: Handshake: start [Mon Mar 19 06:51:12 2012] [debug] ssl_engine_kernel.c(1874): OpenSSL: Loop: befo

[users@httpd] Re: site loads correctly using lan ip, but not from other computers on same lan

2012-03-18 Thread Joon Lee
Hi Serge, thanks for the reply! >>Have you read into AllowCONNECT I've tried adding it for ports and . >>does your URL change when you visit the pages. >>Since I'd expect proxypass and proxypassreverse to refer to the same url I've changed the setting for ProxyPassReverse to match ProxyP

[users@httpd] httpd crashes with segmentation fault: Incompatible libpng version in application and library

2012-03-18 Thread Lenin
Hi, I've compiled httpd 2.2.21 and php 5.3.10, the version of libpng I used is 1.5.7, and I installed all the three packages under a custom path under /opt. The OS is CentOS 6.2, which contains an official distribution of libpng, the version is 1.2.46. When I start the server and visit programs

Re: [users@httpd] Urgent !!! - Rewrite issue

2012-03-18 Thread aparna Puram
Hello Spliff, The rewirtes that you have specified is performing the same. https:// is not being redirected to https:// However, http:// is redirected to https:// Since the ssl ceritificate is installed only for the dns name, When I am accessing https://localhost, It says ssl is installed for

Re: [users@httpd] Urgent !!! - Rewrite issue

2012-03-18 Thread SpliFF
I think you're saying you want: RewriteEngine On RewriteCond %{HTTP_HOST} ^$ RewriteRule (.*) https://%{REQUEST_URI} As long as you are checking for https or port 443 in the rewrite condition you're not redirecting anywhere on HTTPS requests. If you want HTTPS to redirect then your condition is