Re: [EMAIL PROTECTED] and deny directives

2007-09-13 Thread Mark A. Craig
Danie: I presume that you meant to imply that my DENY list should then follow ALLOW FROM ALL? Given that my directives aren't denying anything they shouldn't, but only failing to deny a few things they should, I guess I'm not understanding why I would need to change the ordering in the way you su

Re: [EMAIL PROTECTED] and deny directives

2007-09-13 Thread Mark A. Craig
Joshua: Thanks for the quick and comprehensive reply. Lemme address everything in order: 1. Whatcha mean by "the config is inherited"? Did you mean to address my question about sub-directories? I suspect so, but if not please clarify. 2. The status codes are in fact mostly 403s, but not A

Re: [EMAIL PROTECTED] and deny directives

2007-09-13 Thread Danie Qian
- Original Message - From: "Mark A. Craig" <[EMAIL PROTECTED]> To: Sent: Thursday, September 13, 2007 6:57 PM Subject: [EMAIL PROTECTED] and deny directives My little humble blog has been getting way too much attention from comment spammers, and I'd like to begin cutting them off.

Re: [EMAIL PROTECTED] and deny directives

2007-09-13 Thread Joshua Slive
On 9/13/07, Mark A. Craig <[EMAIL PROTECTED]> wrote: > There's only one problem: it's not working! The log still shows visits > from these hostnames. What am I missing? Do I need to add "/*" to the > end of the directive, or do subdirectories implicitly > inherit the same directives? The conf

Re: [EMAIL PROTECTED] Error message, why??

2007-09-13 Thread Joshua Slive
On 9/13/07, Tomas Larsson <[EMAIL PROTECTED]> wrote: > > > > Why am I getting this error. > > "org.apache.commons.net.io.CopyStreamException: IOException" > > I'm trying to use a java applet in order to circumvent the > limitations of apache HTTP file-uploads. > The applett connects to the ftp-

[EMAIL PROTECTED] Apache 2.2, rotatelogs.exe, and Windows

2007-09-13 Thread Mark A. Craig
I want to use rotatelogs.exe to archive my logs with Apache 2.2 running in Windows 2000. WHen I try to configure it the server fails to start and bitches about Unicode characters on line 1 of httpd.conf that aren't actually there. I've read the docs repeatedly, but it's not entirely explicit

[EMAIL PROTECTED] Error message, why??

2007-09-13 Thread Tomas Larsson
Why am I getting this error. "org.apache.commons.net.io.CopyStreamException: IOException" I'm trying to use a java applet in order to circumvent the limitations of apache HTTP file-uploads. The applett connects to the ftp-server and upload the file. I am testing with a 450MB file and at

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Joshua Slive
On 9/13/07, Chris Ackford <[EMAIL PROTECTED]> wrote: > oh, i thought $1 was a variable :/ It can be if you use the VirtualDocumentRoot directive provided by mod_vhost_alias. (Actually, you would use %1, not $1.) I'm not sure why you keep going for the run-around here. I've already provided you wi

[EMAIL PROTECTED] and deny directives

2007-09-13 Thread Mark A. Craig
My little humble blog has been getting way too much attention from comment spammers, and I'd like to begin cutting them off. I've identified the hostnames they use to snoop for details to construct fake referer data, and now I want to cut them off. I thought I could do it like this: Opt

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
If you want ALL of them to go to one directory just use * as in *.company.com You can also use ServerAlias and only point dom.customer.com and hey.customer.com to one dir, then point all other *.customer.com domains to another place. For instance Namevirtualhost 109.12.133.15:80 Servername he

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Chris Ackford
oh, i thought $1 was a variable :/ - Original Message - From: "Phillip Hamilton" <[EMAIL PROTECTED]> To: Sent: Thursday, September 13, 2007 9:56 PM Subject: RE: [EMAIL PROTECTED] vhosts Absolutely. Just remember to enable the vhosts conf file in your httpd.conf and also, you'll need

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
Absolutely. Just remember to enable the vhosts conf file in your httpd.conf and also, you'll need to do that for ALL of your domains, not just the new one. Using Vhosts is an all-in thing. You need to setup $1.customer-1.com, www.customer.com, etc. Each under a different tag, if you want them p

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Chris Ackford
so could i do something like this ? ServerName $1.customer-1.com DocumentRoot /www/hosts/domain.com/$1/ - Original Message - From: "Joshua Slive" <[EMAIL PROTECTED]> To: Sent: Thursday, September 13, 2007 8:21 PM Subject: Re: [EMAIL PROTECTED] vhosts On 9/13/07, Chris Ackford <[E

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread McDougall, Marshall (FSH)
>-Original Message- >From: McDougall, Marshall (FSH) >Sent: Thursday, September 13, 2007 3:32 PM >To: users@httpd.apache.org >Subject: RE: [EMAIL PROTECTED] vhosts > >>From: Chris Ackford [mailto:[EMAIL PROTECTED] >>Sent: Thursday, September 13, 2007 2:06 PM >>To: users@httpd.apache.or

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread McDougall, Marshall (FSH)
>From: Chris Ackford [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 13, 2007 2:06 PM >To: users@httpd.apache.org >Subject: Re: [EMAIL PROTECTED] vhosts > >im trying to get it so that say i went to >forum.domain.com it would go to /htdocs/domain.com/forum/ and >www.domain.com it would go to /

RE: [EMAIL PROTECTED] Investigating Apache processes

2007-09-13 Thread McDougall, Marshall (FSH)
>-Original Message- >From: Samuel Vogel [mailto:[EMAIL PROTECTED] >Sent: Thursday, September 13, 2007 3:08 PM >To: users@httpd.apache.org >Subject: [EMAIL PROTECTED] Investigating Apache processes > >Hey, > >Right now on one of my Servers, Apache is taking up most of my >CPU time, >and h

[EMAIL PROTECTED] Investigating Apache processes

2007-09-13 Thread Samuel Vogel
Hey, Right now on one of my Servers, Apache is taking up most of my CPU time, and has spawned 6 to 8 processes, that all us between 20 % and 30 % of my CPU. My guess is, that a PHP Skript is causing this! How could I investigate further to find out what file/skript an certain apache process i

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
Perhaps if you read realy, really slowly. But this is getting OT. The point of the matter is that his server is still offline and he has yet to "finger it out" after being sent to the correct place to learn. Hence my saying "just give it here and lemme do it". -Original Message- From:

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Joshua Slive
On 9/13/07, Phillip Hamilton <[EMAIL PROTECTED]> wrote: > Joshua, that link was in the first email he got when he asked :) Ughhh... No. There was a link to http://httpd.apache.org/docs/2.0/vhosts/ which was certainly the most helpful thing posted. But you could spend a couple hours reading through

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
Joshua, that link was in the first email he got when he asked :) Chris, If you need someone to just do it for you, post exactly what you're wanting along with a real directory structure. One of us will just code it and you can plug it in. -Original Message- From: [EMAIL PROTECTED] [mai

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Joshua Slive
On 9/13/07, Chris Ackford <[EMAIL PROTECTED]> wrote: > okay ive tryed myself but i cant get it to work ... i would like > *.domain.com to go to the retropective folder i cant work out how :/ thanks > for your help :) Gee, people aren't being very helpful to you here. There is a very concrete answ

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
Like it says in the docs the previous guy sent you to, just a vhost domain is all you need. Not an entirely new config file. -Original Message- From: Chris Ackford [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 2:06 PM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECT

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Chris Ackford
im trying to get it so that say i went to forum.domain.com it would go to /htdocs/domain.com/forum/ and www.domain.com it would go to /htdocs/domain.com/www/ and uptime.domain.com it would go to /htdocs/domain.com/uptime/ catch my drift now ..? the only way i can see doing it would mean i would

[EMAIL PROTECTED] Binding and searching in mod_auth_ldap

2007-09-13 Thread Alexander Gretencord
Hi list, I'd like to authenticate against an active directory via mod_auth_ldap. After reading the docs, I tried the following: AuthType Basic AuthName "Logon with your DOMAIN Account" AuthBasicAuthoritative Off AuthzLDAPAuthoritative off AuthBasicProvider ldap AuthLDAPURL ldap://DomainDnsZones

Re: [EMAIL PROTECTED] Allow/Deny directive and https

2007-09-13 Thread J.M. Castroagudin
Hmmm... I thought that "deny,allow", as I had, was the right order. I mean, "first of all, nobody can get in. Then, if someone`s IP match 'intranet', let him in" Anyway, I tried changing it, and it behaves the same: no SSL, works right. With SSL, everybody can get in... Perhaps there is

[EMAIL PROTECTED] Re: PHP 5.2.4 with Apache 2.2.6 => 302 rather than 200?

2007-09-13 Thread Whit Blauvelt
On Thu, Sep 13, 2007 at 10:26:12AM +0200, Laurent FAILLIE wrote: > When I spoke about configuration, I means system > configuration in general, not only Apache's one. Hi Laurent, You may well be right about "system configuration in general." Still, the question is "What?" I've now confirmed that

RE: [EMAIL PROTECTED] Allow/Deny directive and https

2007-09-13 Thread Phillip Hamilton
I'm no ENV pro, but have you tried "Order Allow, Deny"? "deny,Allow" The deny directives are evaluated before the Allow directives. Access is allowed by default. Any client which does not match a deny directive or does match an Allow directive will be allowed access to the server." :) -Orig

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Agus
2007/9/13, Phillip Hamilton <[EMAIL PROTECTED]>: > > Then it'd be Apache, by Microsoft. And nobody wants that > > ;) > > > > -Original Message- > From: Chris Ackford [mailto:[EMAIL PROTECTED] > Sent: Thursday, September 13, 2007 9:39 AM > To: users@httpd.apache.org > Subject: Re: [EMAIL PRO

RE: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Phillip Hamilton
Then it'd be Apache, by Microsoft. And nobody wants that ;) -Original Message- From: Chris Ackford [mailto:[EMAIL PROTECTED] Sent: Thursday, September 13, 2007 9:39 AM To: users@httpd.apache.org Subject: Re: [EMAIL PROTECTED] vhosts okay i think i understand that... i think apace shou

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Chris Ackford
okay i think i understand that... i think apace should build an app that makes you vhost config for you ... just an idea :D - Original Message - From: "Jeff Pang" <[EMAIL PROTECTED]> To: Sent: Thursday, September 13, 2007 1:35 PM Subject: Re: [EMAIL PROTECTED] vhosts Origin

Re: [EMAIL PROTECTED] Will not work "out the box" properly

2007-09-13 Thread Joshua Slive
On 9/13/07, Poohba <[EMAIL PROTECTED]> wrote: > Normally I would start the service and all would be fine. If first time > I would get the apache page, if I'm upgrading and I copy over my > httpd.conf I would get my page, this has been the case from my start > with Fedora to fc5. Now I get an Inde

[EMAIL PROTECTED] Will not work "out the box" properly

2007-09-13 Thread Poohba
Normally I would start the service and all would be fine. If first time I would get the apache page, if I'm upgrading and I copy over my httpd.conf I would get my page, this has been the case from my start with Fedora to fc5. Now I get an Index of / and no images show. If I go to the /icons/ pag

[EMAIL PROTECTED] apache 2.2.3 + worker mpm + mod_cgid == problem ?

2007-09-13 Thread Torsten Foertsch
Hi, I have an apache 2.2.3 with worker mpm and mod_cgid running on a suse linux SLES9. Now I see on some servers that one Apache process that ought to die due to MaxRequestsPerChild is not dying. The server-status module reports for each of these processes a few (4-5) remaining connections in

[EMAIL PROTECTED] Allow/Deny directive and https

2007-09-13 Thread J.M. Castroagudin
Hi everybody, I have been trying to limit access to certain 'directories' (inside a https vhost) based on IP directives. Something like this: SetEnvIf remote_addr W.X.Y.Z intranet SetEnvIf Client-ip W.X.Y.Z intranet DocumentRoot "/disc/html/https" ServerName secure.foo.com Order

RE: [EMAIL PROTECTED] Installing New Apache Modules

2007-09-13 Thread Aaron Smith
Yes, well, the operable word there is "SHOULD". I've been attempting to recompile apache on this server for a week now with no end of troubles. Was looking for some other way of accomplishing my task but oh well. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Be

Re: [EMAIL PROTECTED] Installing New Apache Modules

2007-09-13 Thread Joshua Slive
On 9/13/07, Aaron Smith <[EMAIL PROTECTED]> wrote: > Simple question. Hopefully. If I have an existing Apache > installation, that was compiled from source, and the source tree is still > intact on the system, is it possible to compile and install a couple of > additional modules wit

[EMAIL PROTECTED] Installing New Apache Modules

2007-09-13 Thread Aaron Smith
Simple question. Hopefully. If I have an existing Apache installation, that was compiled from source, and the source tree is still intact on the system, is it possible to compile and install a couple of additional modules without re-installing all of apache? I'd like to add a few mod

Re: [EMAIL PROTECTED] rewrite modules with virtual host setting

2007-09-13 Thread Joshua Slive
On 9/13/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Dear All, > > Is there an sample for rewrite modules ( enable ) with virtual host > setting ( apache and FC6 ) ? I can't tell what you mean here. Do you mean that you want to use mod_rewrite to impliment virtual hosts? If so, see: http://h

[EMAIL PROTECTED] rewrite modules with virtual host setting

2007-09-13 Thread edwardspl
Dear All, Is there an sample for rewrite modules ( enable ) with virtual host setting ( apache and FC6 ) ? Edward. - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslis

RE: [EMAIL PROTECTED] Compilation Problem when trinyg to build http 2.2.6 rpm

2007-09-13 Thread HAMMER Cédric Ext ROSI/DPS
Ok ! The fact is the complilation is a step of the whole rpm building process; I'm using the httpd.spec file provided to do that ; so the question is, do you have any idea where I should precise/modify this in the spec file ? Thx for your help, Ced -Message d'origine- De : Foster, Steph

Re: RE: [EMAIL PROTECTED] apache books

2007-09-13 Thread Jeff Pang
Original-Nachricht > Datum: Wed, 12 Sep 2007 22:10:59 -0400 > Von: "Lori D. Cole" <[EMAIL PROTECTED]> > An: users@httpd.apache.org > Betreff: RE: [EMAIL PROTECTED] apache books > Hello, > > Would anyone like to recommend their top couple of Apache books for a > newbie? Thank y

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Jeff Pang
Original-Nachricht > Datum: Thu, 13 Sep 2007 10:25:16 +0100 > Von: "Chris Ackford" <[EMAIL PROTECTED]> > An: users@httpd.apache.org > Betreff: [EMAIL PROTECTED] vhosts > okay ive tryed myself but i cant get it to work ... i would like > *.domain.com to go to the retropective fol

[EMAIL PROTECTED] Configuration issue with Apache HTPP Server

2007-09-13 Thread Uma Kalluru
Hi, I have installed Apache 2.0.59 using windows installer. Every thing went well and then I installed PHP 5.2.4 using windows installer which was also successful. I had some source code (phpBB forum source code) and I wanted to test this source code. I have done the modifications to httpd.conf f

Re: [EMAIL PROTECTED] vhosts

2007-09-13 Thread Victor Trac
On 9/13/07, Chris Ackford <[EMAIL PROTECTED]> wrote: > > okay ive tryed myself but i cant get it to work ... i would like > *.domain.com to go to the retropective folder i cant work out how :/ thanks > for your help :) > > > chris > http://www.google.com/search?q=apache+vhosts --Victor -- http

RE: [EMAIL PROTECTED] Compilation Problem when trinyg to build http 2.2.6 rpm

2007-09-13 Thread Foster, Stephen \(ASPIRE\)
You probably need to specify the correct location path to the SSL libraries, for example in your configure script (or command) have the following: --with-ssl=/usr/include HTH Steve -Original Message- From: HAMMER Cédric Ext ROSI/DPS [mailto:[EMAIL PROTECTED] Sent: 13 September 2007

[EMAIL PROTECTED] vhosts

2007-09-13 Thread Chris Ackford
okay ive tryed myself but i cant get it to work ... i would like *.domain.com to go to the retropective folder i cant work out how :/ thanks for your help :) chris

RE: [EMAIL PROTECTED] Compilation Problem when trinyg to build http 2.2.6 rpm

2007-09-13 Thread HAMMER Cédric Ext ROSI/DPS
No one to help me with this ? Reading the error lines, I've seen checking openssl/ssl.h presence... no But when I can to locate it : # find / -name ssl.h /usr/include/openssl/ssl.h Could it be a problem with httpd.spec ? If then where could be the problem in that file (that's my first rpm b

[EMAIL PROTECTED] Re: mod_diskcache tempfiles

2007-09-13 Thread Miles
Thanks. It is 2.2.4 - latest is 2.2.6 so will try upgrading. Joshua Slive wrote: On 9/12/07, Miles <[EMAIL PROTECTED]> wrote: Hi, We are using the mod_diskcache feature of a newer apache version that we compiled from source. What version exactly? mod_disk_cache is a relatively new feature

Re: [EMAIL PROTECTED] Apache aspx

2007-09-13 Thread Jeff Pang
Original-Nachricht > Datum: Wed, 12 Sep 2007 17:19:10 -0400 > Von: Chris Howell <[EMAIL PROTECTED]> > An: users@httpd.apache.org > Betreff: [EMAIL PROTECTED] Apache aspx > Is it possible to get Apache to serve out ASPX files ? > You can.There's already a mod_perl handler can d

[EMAIL PROTECTED] httpd 2.2.6 -> double cronolog in pstree

2007-09-13 Thread Andre Hübner
Hello List, i updatet Apache from 2.2.4 to 2.2.6. I used same ConfigureLine etc., only new sources. Now i see in pstree (suse linux) double entries of conolog for errorlog: |-cronolog . . . |-httpd-+-2*[cronolog] | `-7*[httpd] If i remove the Line for errorlog from httpd.conf only on

[EMAIL PROTECTED] RE : [EMAIL PROTECTED] Re: PHP 5.2.4 with Apache 2.2.6 => 302 rather than 200?

2007-09-13 Thread Laurent FAILLIE
Hi Whit, > Thanks for the report. If it's something related to > configuration, the > question is of course what. The basic configuration > has stayed the same from > Apache 2.0 through 2.2.6, [...] When I spoke about configuration, I means system configuration in general, not only Apache's one.

[EMAIL PROTECTED] RE: httpd 2.2.6 - rpm build on rhel3

2007-09-13 Thread HAMMER Cédric Ext ROSI/DPS
Hello, Does anyone know what are the exact openssl prerequisities for a http 2.2.6 compilation (with mod_ssl) ? (ie what version is needed of openssl and openssl-devel ?) Thanks * This message and any attachments (the "message") are confidential and intended s

Re: [EMAIL PROTECTED] apache books

2007-09-13 Thread Vincent Bray
On 13/09/2007, Lori D. Cole <[EMAIL PROTECTED]> wrote: > Would anyone like to recommend their top couple of Apache books for a > newbie? Thank you. Try the official bookstore: http://www.apachebookstore.com/ -- noodl - The of

[EMAIL PROTECTED] Re: mod_dav on a shared hosting.

2007-09-13 Thread Michaël Cadilhac
"Joshua Slive" <[EMAIL PROTECTED]> writes: > But in general, mod_dav is not an appropriate tool for mixed > file-system and web access. It expects to have complete and private > control of the directories that it is using. Thank you, I'll just suppose that ls(1) is too much of a hacking tool for