Re: SNI in 2.2.x (Re: Time for 2.2.10?)

2008-09-23 Thread David Shane Holden
Kaspar Brand wrote: Making SNI support configurable at runtime also seems a more attractive solution to me - it would basically mean that in ssl_init_ctx(), the SNI callback is not registered unless it's explicitly configured. I would suggest using something like SSLEnableSNI port [port] ...

[PATCH] mod_session.c

2008-07-19 Thread David Shane Holden
I was experimenting with mod_session a bit and ran into a segfault when a cgi script sets a cookie with a null value (eg. "key="). Basically mod_session tries to do a sanity check on the null value by passing it to ap_unescape_all which is causing the segfault. But, if you look at the code th

Re: svn commit: r667651 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

2008-07-11 Thread David Shane Holden
Thanks for the link and description Brad. It makes sense now. Explains why the default config was giving me a 403. The 'Require all denied' was being inherited from the root directory config. Would it be appropriate to add something like the attached patched to httpd.conf.in? Index: docs/c

Re: svn commit: r667651 - /httpd/httpd/trunk/modules/aaa/mod_authz_core.c

2008-07-10 Thread David Shane Holden
I tried to build Apache from trunk tonight and noticed that this patch broke something. I'm getting a 403 error when trying to browse to a clean install. I'm by no means an expert here, but I noticed a few things which are noted below... [EMAIL PROTECTED] wrote: Author: bnicholes Date: Fri

Re: mod_authn_mysql

2003-02-14 Thread David Shane Holden
Justin Erenkrantz wrote: --On Friday, February 14, 2003 4:26 PM -0700 David Shane Holden <[EMAIL PROTECTED]> wrote: My problem isn't managing a pool of connections... it's if process A creates the connection, process B can use it with no problem, but if process C tries to use

Re: mod_authn_mysql

2003-02-14 Thread David Shane Holden
Paul Querna wrote: On Fri, 14 Feb 2003 14:52:07 -0700, David Shane Holden wrote Since there seems to be some interest in including a mysql auth module into the tree, here's a postgres module which I've coded and have been using for the past month or so. As for a connection pool...

Re: mod_authn_mysql

2003-02-14 Thread David Shane Holden
Since there seems to be some interest in including a mysql auth module into the tree, here's a postgres module which I've coded and have been using for the past month or so. As for a connection pool... I haven't figured out a way to have postres use a connection opened by another process... i

Re: [patch] rfc1413/mod_ident

2003-01-20 Thread David Shane Holden
William A. Rowe, Jr. wrote: If you cvs add the modules, then cvs diff -N you will get those new (and any removed) sources included in the diff output. I tried that, but got a 'write access required' error so I just attached the new files. Shane

[patch] rfc1413/mod_ident

2003-01-18 Thread David Shane Holden
Propagate the rfc1413/mod_ident changes to Windows. Shane ? modules/metadata/mod_ident.dsp ? modules/metadata/mod_ident.exp Index: Apache.dsw === RCS file: /home/cvspublic/httpd-2.0/Apache.dsw,v retrieving revision 1.94 diff -u -r1

[patch] Makefile.in

2003-01-09 Thread David Shane Holden
Is there any reason why mod_auth.h shouldn't be copied over during a 'make install' for 3rd party auth modules to use? Shane Index: Makefile.in === RCS file: /home/cvspublic/httpd-2.0/Makefile.in,v retrieving revision 1.127 diff -u

Re: CVS, SSH and Windows

2002-09-10 Thread David Shane Holden
Here's the solution I came to after dickin' around for hours with it a few months ago... Install ssh from http://www.networksimplicity.com/openssh/. You _cannot_ have cygwin installed along side this port of openssh. If you want to use key authenication store your private key as c:\program file

Re: cvs commit: httpd-2.0/docs/conf httpd-nw.conf httpd-std.conf.inhttpd-win.conf

2002-09-03 Thread David Shane Holden
[EMAIL PROTECTED] wrote: > ianh2002/09/03 08:54:46 > > Modified:.CHANGES >docs/conf httpd-nw.conf httpd-std.conf.in httpd-win.conf > Log: > switch x-icon to httpd.conf instead of mime.types Did you mean to leave x-icon in mime.types? Shane

Re: [VOTE] Location of aaa rewrite

2002-09-03 Thread David Shane Holden
[ ] Check in aaa rewrite to 2.0. [x] Check in aaa rewrite to 2.1. Shane

httpd-dist directory descriptions

2002-08-15 Thread David Shane Holden
The .htaccess file isn't setup correctly to display the descriptions of the directories. Shane Index: .htaccess === RCS file: /home/cvspublic/httpd-dist/.htaccess,v retrieving revision 1.78 diff -u -r1.78 .htaccess --- .htaccess

Re: daedalus is running httpd-2.0.pre40

2002-07-22 Thread David Shane Holden
Greg Ames wrote: > > uhhh, that clobbers httpd.conf, and they'd tar and feather us for sure. But if > we leave out that piece, it's close to what's happening now: I didn't mean overwrite it, I shoulda said 'copy if it doesn't exist'. My bad. > > . make a conf/ directory if it doesn't alrea

Re: daedalus is running httpd-2.0.pre40

2002-07-22 Thread David Shane Holden
Ryan Bloom wrote: > > I don't, but I am not going to argue anymore. I will simply say that > the way things work now, I am going to have a bunch of useless files > sitting in the conf/ directory of all of my production machines, because > every time I upgrade Apache, I will get all of the fi

[patch] mpm_winnt.c sleep timer

2002-07-22 Thread David Shane Holden
Here's an updated patch to remove the sleep timer that uses an unnamed event and sends it to the child process through send_handles_to_child. Shane Index: mpm_winnt.c === RCS file: /home/cvspublic/httpd-2.0/server/mpm/winnt/mpm_

Re: [PATCH] Makefile.win

2002-07-18 Thread David Shane Holden
William A. Rowe, Jr. wrote: > > Ugh. -1 ... you eliminate the ability for VC5 users to build these > modules. > VC5 never supported invoking the IDE from the command line. > > No, we don't distribute .mak files from CVS, but any VC5 or VC6 user > can export the make files after doing one

[PATCH] Makefile.win

2002-07-18 Thread David Shane Holden
- Cleans up the garbled output. - Fixes a few grammatical errors and incorrect path information. - Removes building from .mak files. Is building browse information from the command line useful? It doesn't build as it is, and from what I know the only real benefit of browse info is when it'

[PATCH] libhttpd.dsp

2002-07-17 Thread David Shane Holden
Removes the long ago deleted mpm_status.h from the project file. Shane Index: libhttpd.dsp === RCS file: /home/cvspublic/httpd-2.0/libhttpd.dsp,v retrieving revision 1.48 diff -u -r1.48 libhttpd.dsp --- libhttpd.dsp13 J

Re: HEAD is borked

2002-07-15 Thread David Shane Holden
I've noticed this aswell. I have Apache running on a machine using an internal IP and if I connect to it with another machine using an internal IP it sits there for exactly 5 minutes before sending back the respone. But if someone connects with a real IP from the Internet everything works fine

[PATCH] ApacheMonitor.c

2002-07-12 Thread David Shane Holden
This patch fixes AM where it throws an error window when trying to control the service for lack of query status access. I don't want Mladen to feel like I'm stepping on his toes, but I really don't like using the generic access unless there's a good reason to. So I changed all the service ca

Re: [PATCH] mpm/winnt service permissions

2002-07-10 Thread David Shane Holden
lation errors. > >MT. > > > >>-Original Message- >>From: David Shane Holden [mailto:[EMAIL PROTECTED]] >>Sent: Wednesday, July 10, 2002 2:28 AM >>To: [EMAIL PROTECTED] >>Subject: Re: [PATCH] mpm/winnt service permissions >> >> &

Re: [PATCH] mpm/winnt service permissions

2002-07-09 Thread David Shane Holden
Correct me if I'm wrong, but it sounds like you think this is for ApacheMonitor. This is for the winnt mpm itself. I thought your patch this morning was for the mpm just as I believe you think this is for the monitor. Shane William A. Rowe, Jr. wrote: > At 01:40 PM 7/9/2002, you wrote: > >>

[PATCH] mpm/winnt service permissions

2002-07-09 Thread David Shane Holden
This patch sets the calls to OpenSCManager and OpenService to use the minimum required privileges. Index: service.c === RCS file: /home/cvspublic/httpd-2.0/server/mpm/winnt/service.c,v retrieving revision 1.56 diff -u -3 -r1.56 se