Re: [EMAIL PROTECTED] multi-homed Apache? Anyone?

2006-11-27 Thread Morgan Gangwere
i know that you can check that you have something coming in by typing your Interweb IP Address and if something comes up (usually a Config page.) then you have a foot In the door. i Know that Qwest and SpeakEasy do this. On 11/26/06, dan page <[EMAIL PROTECTED]> wrote: Morgan Gangwere wrote: >

RE: [EMAIL PROTECTED] Limiting COPY method for WebDAV to one direction

2006-11-27 Thread Mark Lavi
I don't know of an Apache/WebDAV solution off the top of my head for your requirement, but it is probably easiest to address this from the filesystem: change the permissions on the directory to be read only. --Mark Mark Lavi, Enterprise Web Management Team @ SGI mailto:[EMAIL PROTECTED] || ph

[EMAIL PROTECTED] Limiting COPY method for WebDAV to one direction

2006-11-27 Thread Todd Hivnor
I am running WebDAV on my Apache 2.0.51 server on Fedora Core 2. I would like to allow users to copy files _from_ a certain directory, but not _into_ it. However, if I allow the COPY method (via a the LimitExcept tag) then I am allowing copy _from_ and copy _to_. There doesn't seem to be abl

Re: [EMAIL PROTECTED] Re: Help with mod_proxy

2006-11-27 Thread Todd Nine
Thanks for getting back to me Paul. Sorry I snapped at you, it was uncalled for, it has been one of those weekends ... :). I finally figured out my issue, and unfortunately, it was a bonehead move on my part. As I said earlier, I've defined each virtual host in its own .conf file so editing eac

Re: [EMAIL PROTECTED] Vhosts & Statistics

2006-11-27 Thread Scott Wilcox
I just realised that too, didn't even cross my mind! Thank you for the reply Serge :) Scott. Serge Dubrouski wrote: Configure you vhosts to log to separate files and use any kind of standard stat tools: awstats, analyze, etc. Also as far as I remember awstats allows you to configure building r

[EMAIL PROTECTED] Failed downloads: "Could not get next bucket brigade"

2006-11-27 Thread Todd Hivnor
I've got one user who always seems to have problems downloading files from my Apache server. She reports that the download process hangs, often with 1% of the file remaining to download. The server logs have this error: (104)Connection reset by peer: Could not get next bucket brigade [500,

Re: [EMAIL PROTECTED] Vhosts & Statistics

2006-11-27 Thread Serge Dubrouski
Configure you vhosts to log to separate files and use any kind of standard stat tools: awstats, analyze, etc. Also as far as I remember awstats allows you to configure building reports for particular site form common log files. On 11/27/06, Scott Wilcox <[EMAIL PROTECTED]> wrote: hey folks.

[EMAIL PROTECTED] Vhosts & Statistics

2006-11-27 Thread Scott Wilcox
hey folks. I've spent the past few hours googling to find some scripts or software to use with my Apache server. I'd like to have something to view usage and statistics on each individual vhost only. Any ideas, or does anyone know of something that shows this? Any help appreciated! Scott.

Re: [EMAIL PROTECTED] Behaviour when CGI script fails to return?

2006-11-27 Thread Sascha Kersken
Hi Dale, I'm guessing that after some timeout (which is being recorded in the error log) the server is killing the process off. Is this correct? If so, how can I change the timeout with a configuration setting? Is the generic TimeOut parameter used for this purpose Yes. (You could test thi

[EMAIL PROTECTED] Behaviour when CGI script fails to return?

2006-11-27 Thread Dale Mellor
I'm curious how the httpd server behaves when a CGI program does not return. I ask because I am using a debugger quite extensively, and find that the child process (the CGI program being debugged) often seems to just go away after about five minutes, limiting my debugging session. I'm guessing th

[EMAIL PROTECTED] Using Apache httpd 2.0.59 with WLS 9.2 plugin in worker MPM model

2006-11-27 Thread Ramdas . Hegde
In our previous app we used the non threaded prefork MPM model instead of the worker threaded MPM model - given Apache's recommendation for using the prefork model for stability This was using Apache with JBoss App server I am going to be using Apache 2.0.59 with the WLS 9.2 plugin on RHEL in a

Re: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread Flowering Weeds
"It is not possible ...", the constant cry of the Windows user. If that's true, it looks like a good reason to upgrade to *X. Ah there are many Windows ways (but since most here mentioned Unix shell ways) well without knowing exactly what you need, perhaps for your own server or for client

RE: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-27 Thread Lucuk, Pete
Tried doing it via the query string, and not the headers like this... RewriteMap escape int:escape RewriteCond %{SSL:SSL_CLIENT_CERT} (.*) RewriteRule .* - [E=SSLCC:%1] RewriteRule ^/https(.*)$ https://kftcsu09.ftc.lab:6443$1?CLIENT_CERT=${escape:%{ENV:SSLCC}} [QSA,P] And got this... 10.0.0.

RE: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-27 Thread Lucuk, Pete
This... RewriteMap escape int:escape RewriteCond %{SSL:SSL_CLIENT_CERT} (.*) RewriteRule .* - [E=SSLCC:${escape:{%1}}] RequestHeader add X-SSL-Client-Cert %{SSLCC}e RewriteRule ^/https(.*)$ https://kftcsu14.ftc.lab:48605/servlets-examples/servlet/RequestHeaderEx ample$

Re: [EMAIL PROTECTED] Apache accessible only from localhost on Windows XP

2006-11-27 Thread Lorenzo Marcon
A timeout suggests FW. I know you checked this but check the FW logs for dropped connections. No dropped connections regarding this. I first turned off, then uninstalled the firewall and nothing changed. I tried with Zone Alarm, Kerio and Comodo. I'm always getting the same behaviour, even

RE: [EMAIL PROTECTED] Apache accessible only from localhost on Windows XP

2006-11-27 Thread Boyle Owen
> -Original Message- > From: Lorenzo Marcon [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 4:47 PM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Apache accessible only from localhost > on Windows XP > > Good morning, > I have installed Apache 2.2.3 and php5 on Wi

[EMAIL PROTECTED] Apache accessible only from localhost on Windows XP

2006-11-27 Thread Lorenzo Marcon
Good morning, I have installed Apache 2.2.3 and php5 on Windows XP Professional SP2. My problem is that the webserver seems to work only if it's being accessed from the same machine it is installed on. If I try http://localhost from my browser all seems to work perfectly, php pages included. The

RE: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-27 Thread Lucuk, Pete
Where would I put the Rewrite escape function in the stuff below? I tried a couple different things and could not get it to work. Thank you for your help, I appreciate it RewriteCond %{SSL:SSL_CLIENT_CERT} (.*) RewriteRule .* - [E=SSLCC:%1] RequestHeader add X-SSL-Client-Cert %{SSLCC}e Rewrite

Re: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread Nick Kew
On Mon, 27 Nov 2006 15:03:09 +0100 "Boyle Owen" <[EMAIL PROTECTED]> wrote: > > It is not possible by adding the dependencies in windows > > service manager. "It is not possible ...", the constant cry of the Windows user. If that's true, it looks like a good reason to upgrade to *X. > Luckily, a

RE: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread Boyle Owen
> -Original Message- > From: shahid [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 1:50 PM > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] Controlling an external program > using Apache > > It is WINDOWS. In UNIX, it can be done by modfiying the > init.d sc

RE: [EMAIL PROTECTED] How to send WHOLE SSL_CLIENT_CERT in reverse proxy?

2006-11-27 Thread Lucuk, Pete
I am using httpd-2.2.3. I read the first bug post and it seems that there was a fix but never made it into the core code base? Could I simply take the fix, replace it with current C file that is causing me headaches, and recompile? Thanks much for taking time and helping me, it is greatly apprec

Re: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread shahid
It is WINDOWS. In UNIX, it can be done by modfiying the init.d scripts, but It needs to be done in windows. It is not possible by adding the dependencies in windows service manager. That's why I wanted to know whether any provision is available in Apache or not. Regards, Shahid On 11/27/06,

Re: [EMAIL PROTECTED] i18n url rewriting

2006-11-27 Thread Nick Kew
On Mon, 27 Nov 2006 17:17:22 +0800 Jacky <[EMAIL PROTECTED]> wrote: > >ServerName testwww.hkdnr.hk > > > I'm wondering why it does not rewrite to http://testwww.hkdnr.hk when > i browse to http://xn--eqrt2guv0afw3b.hk:/ It's a virtual host for something else. -- Nick Kew Applicati

Re: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread Nick Kew
On Mon, 27 Nov 2006 15:48:02 +0530 shahid <[EMAIL PROTECTED]> wrote: > I am a newbie. > > I have the following requirements with Apache 2.2. > > 1) An executable needs to be started when Apache has started > 2) The same executable needs to be stopped when Apache is going to > shutdown. Well, yo

RE: [EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread Boyle Owen
> -Original Message- > From: shahid [mailto:[EMAIL PROTECTED] > Sent: Monday, November 27, 2006 11:18 AM > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Controlling an external program using Apache > > I am a newbie. > > > I have the following requirements with Apache 2.2. >

[EMAIL PROTECTED] Controlling an external program using Apache

2006-11-27 Thread shahid
I am a newbie. I have the following requirements with Apache 2.2. 1) An executable needs to be started when Apache has started 2) The same executable needs to be stopped when Apache is going to shutdown. I would like to know whether any provision is available in Apache configuration or not. Ple

[EMAIL PROTECTED] i18n url rewriting

2006-11-27 Thread Jacky
Dear all, I have a virtual host like this: RewriteEngine on RewriteCond %{SERVER_PORT} ^$ RewriteCond %{HTTP_HOST} ^xn--eqrt2guv0afw3b\.hk$ RewriteRule ^/(.*) http://testwww.hkdnr.hk/$1 [L,R] DocumentRoot /www/srs/registrant ServerName testwww.hkdnr.hk DirectoryIn

[EMAIL PROTECTED] Apache 2 suexec pam authentication

2006-11-27 Thread Oleg R.
Hello! I am trying to enable suexec for apache 2 to read the authentication data from a mysql database. Sure i could have my users in /etc/passwd but it is nicer when they are in mysql, no problems when i have to upgrade the server. So anyone solved this problem, i searched everywhere about apac