Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread J. Bakshi
On 02/05/2010 10:00 AM, Frank Gingras wrote: >> >> So I can see one of two options >> >> 1. mod_deflate is running but can't see here in log >> 2. mod_deflate is not running at all. >> >> How can I go further to check it ? >> >> thanks >> > > > Start by removing the IfModule directives. > > Frank.

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread Frank Gingras
On 02/04/2010 11:20 PM, J. Bakshi wrote: On 02/04/2010 05:16 PM, Philip Wigg wrote: http://httpd.apache.org/docs/2.2/mod/mod_deflate.html There you will see examples of how to configure a mod_deflate log file which is useful is you want to see what mod_deflate is doing. A couple of things th

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread J. Bakshi
On 02/04/2010 05:16 PM, Philip Wigg wrote: > http://httpd.apache.org/docs/2.2/mod/mod_deflate.html > > There you will see examples of how to configure a mod_deflate log file > which is useful is you want to see what mod_deflate is doing. > > A couple of things that tripped me up whilst configuring

RE: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Thomas, Peter
>Thanks, this worked. But is this the best way to do it, though? Is it possible to make the www folder traversible only by the apache user/group and not *all* users? The users on my box are trusted so >it's not a big deal but I'm just trying to understand best practices used for security. Run:

[us...@httpd] Runaway Apache Processes - Second Victim

2010-02-04 Thread John Thomas
I have been using Apache for several years without trouble on CentOS 4 originally, CentOS 5 now. Most of my applications are php/mysql and mostly Drupal. FYI, I have run into a problem that sounds identical to Dan Bunyards thread here: http://markmail.org/thread/pnmwmalsfe6c7j6c Everything

[us...@httpd] HTTPS and reverse proxy query

2010-02-04 Thread bobs99
Hi I have an HTTPS client sending SOAP requests via a reverse Proxy Apache which I'd like to simply forward (as HTTPS) traffic onto a SOAP server where the SSL connection will terminate. It seems from what I can find out this is only?? possible if Apache first establishes the SSL connection with

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
On 02/04/2010 08:30 PM, Thomas, Peter wrote: > Just a stylistic note, I'm a great believer in the "find" command, but > in this case I believe it is more readable to do something like this: > > # First, make sure the home directory is traversable by all users > chmod a+x /home/somebody > > # Then,

Re: [us...@httpd] How does ProxyPassReverse work?

2010-02-04 Thread Nick Kew
On Thu, 4 Feb 2010 16:55:54 +0100 "Rainer Frey" wrote: > So am I right that I need to exactly match the Location header from the > backend? > And is there any configuration that influences whether two equivalent urls in > different form(such as :80 vs. no port) match? You need to match the sta

[us...@httpd] How does ProxyPassReverse work?

2010-02-04 Thread Rainer Frey
Hi, I don't really understand the ProxyPassReverse directive, esp. the url parameter. What exactly is the url matched against, in order for the rewrite to work? The doc says: | path is the name of a local virtual path. url is a partial URL for the remote | server - the same way they are used f

RE: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Thomas, Peter
Just a stylistic note, I'm a great believer in the "find" command, but in this case I believe it is more readable to do something like this: # First, make sure the home directory is traversable by all users chmod a+x /home/somebody # Then, make sure NO files are executable under /home/somebody/ww

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Frank Gingras
On 02/04/2010 09:34 AM, Perl Whore wrote: I'm still getting the permission error. [Thu Feb 04 06:47:11 2010] [error] [client 1.2.3.4] (13)Permission denied: access to / denied [Thu Feb 04 07:29:05 2010] [error] [client 1.2.3.4] (13)Permission denied: access to /test.htm denied [Thu Feb 04 07:2

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Philip Wigg
On 4 February 2010 14:34, Perl Whore wrote: > I'm still getting the permission error. > > [Thu Feb 04 06:47:11 2010] [error] [client 1.2.3.4] (13)Permission > denied: access to / denied > [Thu Feb 04 07:29:05 2010] [error] [client 1.2.3.4] (13)Permission > denied: access to /test.htm denied > [Thu

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
I'm still getting the permission error. [Thu Feb 04 06:47:11 2010] [error] [client 1.2.3.4] (13)Permission denied: access to / denied [Thu Feb 04 07:29:05 2010] [error] [client 1.2.3.4] (13)Permission denied: access to /test.htm denied [Thu Feb 04 07:29:08 2010] [error] [client 1.2.3.4] (13)Permis

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
Thanks, mod_userdir looks interesting. I'll use that. - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr..

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Philip Wigg
First of all, you're top posting. Google that to see why that's a bad thing if you don't know what it means. You need to set your /home/somebody/www directory to readable and executable by the 'apache' user:- chmod g+rx /home/somebody/www and then the files in that directory should be readable:-

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
Tried that and it did not work. It's a permission error, not missing file. It worked fine on my other server when I was running apache as root. Now I'm getting the permission error when I run it as a user. On 02/04/2010 07:04 PM, Daniel Reinhardt wrote: > > -

Re: [us...@httpd] SuExec

2010-02-04 Thread Nilesh Govindarajan
Please ignore my previous message. I was going nuts due to this and I think I didn't see the "FOO" in elinks. Its working properly now. -- Nilesh Govindarajan Site & Server Adminstrator www.itech7.com - The official User-To-Us

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
drwx-- 4 somebody apache 4096 2010-02-03 12:34 somebody On 02/04/2010 07:04 PM, Daniel Reinhardt wrote: > > -- > From: "Perl Whore" > Sent: 04 February, 2010 12:38 > To: > Subject: [us...@httpd] Help needed to set correct permissions > >> I'

Re: [us...@httpd] SuExec

2010-02-04 Thread Nilesh Govindarajan
On 02/03/2010 09:55 PM, dinar qorbanof wrote: i think you can do what you want. create several wrapper "php-cgi" scripts each in its own directory and for all of them it and that directory of it should be with both user and group = user of it (and wrapper script should be executable). drupal php

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Daniel Reinhardt
-- From: "Perl Whore" Sent: 04 February, 2010 12:38 To: Subject: [us...@httpd] Help needed to set correct permissions I'm running a default httpd install from the yum repository (Fedora 12). The user and group that starts the httpd process is "a

Re: [us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Philip Wigg
> I'm running a default httpd install from the yum repository (Fedora > 12). The user and group that starts the httpd process is "apache" > (default configuration in httpd.conf). > > The default page is located in /var/www/html/ > > I have a few users on this box for whom I need to setup virtual ho

[us...@httpd] Help needed to set correct permissions

2010-02-04 Thread Perl Whore
I'm running a default httpd install from the yum repository (Fedora 12). The user and group that starts the httpd process is "apache" (default configuration in httpd.conf). The default page is located in /var/www/html/ I have a few users on this box for whom I need to setup virtual hosts and thei

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread Philip Wigg
> many many thanks for your kind attention and solution. It helped me. > Is there any way to check the deflate is operational ? Also trying reading the mod_deflate documentation:- http://httpd.apache.org/docs/2.2/mod/mod_deflate.html There you will see examples of how to configure a mod_deflate

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread Daniel Reinhardt
-- From: "J. Bakshi" Sent: 04 February, 2010 11:03 To: Subject: Re: [us...@httpd] How to check that mod_deflate is enable ? On 02/04/2010 04:19 PM, Martin Barry wrote: $quoted_author = "J. Bakshi" ; Any clue please ? Check it's been includ

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread J. Bakshi
On 02/04/2010 04:19 PM, Martin Barry wrote: > $quoted_author = "J. Bakshi" ; > >> Any clue please ? >> > > Check it's been included: > > rpm -ql apache2 | grep deflate > > > Enable it: > > a2enmod deflate > > > cheers > Marty > > Hello Marty, many many thanks for your kind attentio

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread Martin Barry
$quoted_author = "J. Bakshi" ; > > Any clue please ? Check it's been included: rpm -ql apache2 | grep deflate Enable it: a2enmod deflate cheers Marty - The official User-To-User support forum of the Apache HTTP Server Pr

Re: [us...@httpd] How to check that mod_deflate is enable ?

2010-02-04 Thread J. Bakshi
Any clue please ? On 02/02/2010 03:16 PM, J. Bakshi wrote: > Hello list, > > I have suse 11.1 server with Apache/2.2.10 (Linux/SUSE). I like to > enable and check the presence of mod_deflate to save bandwidth. > > "a2enmod -l " reports > > > ` > actions alias auth_basic authn_fil