[us...@httpd] Not working: Rewrite from HTTPS to HTTP

2009-08-05 Thread Pradeep Phalgunan Kalliat
Hi All, I have a situation where my web application is throwing errors because of some problems with the SSL certificate. I want to redirect https requests to http till the certificate problems are resolved. At first, I modified my redirect to HTTPS rule From: RewriteRule ^/(.*)

RE: [us...@httpd] Not working: Rewrite from HTTPS to HTTP

2009-08-05 Thread Robert Mattson
Hi Pradeep, Um, what's wrong with a: Redirect 302 /myappdir/somedir/ http://example.org/myappdir/somedir/ Rob Please consider the environment - do you really need to print this email? -Original Message- From: Pradeep Phalgunan Kalliat [mailto:pradeep_kall...@infosys.com] Sent:

[us...@httpd] [solved] Re: [us...@httpd] Apache dies in Freebsd jail

2009-08-05 Thread apache-user
From out of left field with a little inspiration: I hazarded a look at the host log files and found I was getting exited on sig 11 errors from httpd- even though ps was still showing it as running in the jail. So a google search now showed up some more possible causes; most of those

[us...@httpd] Number of connections

2009-08-05 Thread ricardo13
hi, I would like to monitor the number of connections actives in web server at that moment. How do I get ? Does mod_status provide that informations ?? Thank you Ricardo -- View this message in context: http://www.nabble.com/Number-of-connections-tp24825178p24825178.html Sent from the Apache

Re: [us...@httpd] Number of connections

2009-08-05 Thread Eric Covener
On Wed, Aug 5, 2009 at 7:30 AM, ricardo13ricardoogra...@gmail.com wrote: hi, I would like to monitor the number of connections actives in web server at that moment. How do I get ? Does mod_status provide that informations ?? Ingoring the event mpm, see xxx requests currently being processed

Re: [us...@httpd] Number of connections

2009-08-05 Thread ricardo13
Hi, Is it the same BusyWorkers using flag ?auto in URL ? Thank you Ricardo Eric Covener wrote: On Wed, Aug 5, 2009 at 7:30 AM, ricardo13ricardoogra...@gmail.com wrote: hi, I would like to monitor the number of connections actives in web server at that moment. How do I get ? Does

Re: [us...@httpd] Number of connections

2009-08-05 Thread André Warnier
ricardo13 wrote: hi, I would like to monitor the number of connections actives in web server at that moment. How do I get ? Does mod_status provide that informations ?? If you really mean *connections*, you could try netstat -an Any line which has, in the first column of IP addresses, an IP

Re: [us...@httpd] Number of connections

2009-08-05 Thread ricardo figueiredo
Ok !! I will see this command. Thank you Ricardo On Wed, Aug 5, 2009 at 9:10 AM, André Warnier a...@ice-sa.com wrote: ricardo13 wrote: hi, I would like to monitor the number of connections actives in web server at that moment. How do I get ? Does mod_status provide that informations ??

Re: [us...@httpd] Number of connections

2009-08-05 Thread Arnab Ganguly
Use mod_status and then from the browser http://servername/server-statuswill show you the status. Thanks Arnab On Wed, Aug 5, 2009 at 5:00 PM, ricardo13 ricardoogra...@gmail.com wrote: hi, I would like to monitor the number of connections actives in web server at that moment. How do I get

Re: [us...@httpd] mod_deflate and mod_cache can this be combined to improve performance

2009-08-05 Thread Fábio Jr.
I have a Server running with Apache 2.2.9/Mod_Perl 2.0.4 , now I am trying to use mod_deflate to compress response. I have lot of static files in my server which doesn't change frequently so i want to caching for these compressed files. Is it possible , any idea at what stage mod_cache

Re: [us...@httpd] mod_deflate and mod_cache can this be combined to improve performance

2009-08-05 Thread Shibi NS
Is the file is cached before compression or after compression ?. If the file is cached after compression then its relay helps me in improving the performance. Shibi Ns On Wed, Aug 5, 2009 at 11:28 PM, Fábio Jr. fjuniorli...@gmail.com wrote: I have a Server running with Apache 2.2.9/Mod_Perl

Re: [us...@httpd] mod_deflate and mod_cache can this be combined to improve performance

2009-08-05 Thread Fábio Jr.
Shibi NS escreveu: Is the file is cached before compression or after compression ?. If the file is cached after compression then its relay helps me in improving the performance. It will depends of the compatibility of the client's browser. In mod_deflate configs, you should see that it have

[us...@httpd] Specific filesystem for cache

2009-08-05 Thread Fábio Jr.
Hello all. I'm wondering if someone have a suggestion of what filesystem to use in the cache directory used by mod_disk_cache. I'm having some i/o problems, and want to choose the right filesystem, since I use a separate partition for the cache. Thanks []s Fábio Jr.

Re: [us...@httpd] unable to configure rsa server private key

2009-08-05 Thread Matus UHLAR - fantomas
On 04.08.09 10:42, Manoj Singh wrote: My security certificate has been expired. So the company provided me the new certificate to copy into the linux server. After copying this file apache unable to start. The error generated is unable to configure rsa server private key. what does the error

[us...@httpd] Apache in chroot on Solaris 9

2009-08-05 Thread Igor Cicimov
Hi all, I have built and install apache2.2.11 on solaris 9 and all is working fine but when I put the server in chroot I faced some problems. More specifically the server complains about the user I'm running apache under and says can't find the user with the given UID. My chroot is /chroot and

Re: [us...@httpd] Apache in chroot on Solaris 9

2009-08-05 Thread Nick Kew
On 6 Aug 2009, at 01:06, Igor Cicimov wrote: Hi all, I have built and install apache2.2.11 on solaris 9 and all is working fine but when I put the server in chroot I faced some problems. More specifically the server complains about the user I'm running apache under and says can't find

Re: [us...@httpd] Apache in chroot on Solaris 9

2009-08-05 Thread Igor Cicimov
Thanks Nick, that was a good pointer. I enabled the su command in chroot and copied over some of the libraries linked to it: cp /usr/lib/libbsm.so.1 /chroot/usr/lib/libbsm.so.1 cp /usr/lib/libproject.so.1 /chroot/usr/lib/libproject.so.1 cp /usr/lib/libpam.so.1 /chroot/usr/lib/libpam.so.1 cp

Re: [us...@httpd] Apache in chroot on Solaris 9

2009-08-05 Thread Igor Cicimov
As addition to the said above I can see the following error when I run truss on the process: stat(/usr/local/ssl/lib/libc.so.1, 0xFFBFEE30) Err#2 ENOENT stat(/usr/local/ssl/lib/libgcc_s.so.1, 0xFFBFEE30) Err#2 ENOENT and those libraries really don't exist. Any idea how to get around this? Igor

[us...@httpd] mod_proxy_html can't install

2009-08-05 Thread Igor Cicimov
Hi all, I'm trying to install mod_proxy_htnl in apache2.2.11 on Solaris 9 but I'm getting the following error: # /usr/local/apache2/bin/apxs -c -I /usr/include/libxml2 -i -a mod_proxy_html.c /usr/local/apache2/build/libtool --silent --mode=compile gcc -prefer-pic -DSOLARIS2=9

Re: [us...@httpd] mod_proxy_html can't install

2009-08-05 Thread Igor Cicimov
Thanks Eric I will sure try that. I have the module installed on Solaris 10 with no problems but faild in Solaris 9... I will post again after libxml2 install. Cheers, Igor On Thu, Aug 6, 2009 at 1:49 PM, Eric Covener cove...@gmail.com wrote: On Wed, Aug 5, 2009 at 11:29 PM, Igor

Re: [us...@httpd] mod_deflate and mod_cache can this be combined to improve performance

2009-08-05 Thread Shibi NS
Great,Thanks , I that answers my question. On Thu, Aug 6, 2009 at 12:52 AM, Fábio Jr. fjuniorli...@gmail.com wrote: Shibi NS escreveu: Is the file is cached before compression or after compression ?. If the file is cached after compression then its relay helps me in improving the

Re: [us...@httpd] mod_proxy_html can't install

2009-08-05 Thread Igor Cicimov
Ok it worked with the new libxml2 ... Thanks again Eric Igor On Thu, Aug 6, 2009 at 2:07 PM, Igor Cicimov icici...@gmail.com wrote: Thanks Eric I will sure try that. I have the module installed on Solaris 10 with no problems but faild in Solaris 9... I will post again after libxml2 install.