[EMAIL PROTECTED] Redirect to a moved Proxied file

2005-08-03 Thread Becky Alcorn
Hi all, I have a (mod_perl) server listening on port 8001, and a static (non-mod_perl) server listening on port 80. Requests to the /mod_perl/ directory are ProxyPassed to the mod_perl server: ProxyPass http://modperlserver:8001/ ProxyPassReverse http://modperlserver:8001/ This works fine

[EMAIL PROTECTED] Re: Aliased interface -- bind failed, address in use (RESOLVED)

2005-08-03 Thread Kevin DeGraaf
First make sure you don't have another Listen statement that binds to 443. Check any Include(d) files too. Blast. Should have grepped the conf file first. "Listen 443", a nice blanket statement, was hiding amongst the line noise that is the SSL configuration section. :-) Sorry for wastin

Re: [EMAIL PROTECTED] Aliased interface -- bind failed, address in use

2005-08-03 Thread Stephen Carville
Kevin DeGraaf wrote: I have a Linux 2.4.27 machine with the following interface configuration: eth0 [xx.xx.xx.162] UP BROADCAST RUNNING etc. eth0:1 [xx.xx.xx.165] UP BROADCAST RUNNING etc. I can ping the machine on both interfaces. I have OpenVPN running on tcp/xx.xx.xx.165:443 and nothing r

Re: [EMAIL PROTECTED] Re: Aliased interface -- bind failed, address in use

2005-08-03 Thread Ivan Barrera A.
Kevin DeGraaf wrote: >> That doesn't demonstrate that OpenVPN is only "listening" on the 165 >> interface. >> netstat -nlp | grep 443 >> should. > > > # netstat -nlp | grep 443 > (no results returned) > > This makes sense because OpenVPN is in point-to-point mode, i.e. accept > one connection an

Re: [EMAIL PROTECTED] JSP pages and Apache 2

2005-08-03 Thread Stephen Carville
John Hicks wrote: Stephen Carville wrote: During a migration from Apache 1 to Apache 2 I found a problem with DirectoryIndex in VirtualHosts I have several Virtual Hosts defined with a DirectoryIndex: ServerName www.nationwide-totalflood.com DocumentRoot/var/jakarta/dpsi-co

[EMAIL PROTECTED] Re: Aliased interface -- bind failed, address in use

2005-08-03 Thread Kevin DeGraaf
That doesn't demonstrate that OpenVPN is only "listening" on the 165 interface. netstat -nlp | grep 443 should. # netstat -nlp | grep 443 (no results returned) This makes sense because OpenVPN is in point-to-point mode, i.e. accept one connection and then don't listen for any more. To demons

Re: [EMAIL PROTECTED] Aliased interface -- bind failed, address in use

2005-08-03 Thread Ivan Barrera A.
Kevin DeGraaf wrote: > I have a Linux 2.4.27 machine with the following interface configuration: > > eth0 [xx.xx.xx.162] UP BROADCAST RUNNING etc. > eth0:1 [xx.xx.xx.165] UP BROADCAST RUNNING etc. > > I can ping the machine on both interfaces. > > I have OpenVPN running on tcp/xx.xx.xx.165:44

[EMAIL PROTECTED] Aliased interface -- bind failed, address in use

2005-08-03 Thread Kevin DeGraaf
I have a Linux 2.4.27 machine with the following interface configuration: eth0 [xx.xx.xx.162] UP BROADCAST RUNNING etc. eth0:1 [xx.xx.xx.165] UP BROADCAST RUNNING etc. I can ping the machine on both interfaces. I have OpenVPN running on tcp/xx.xx.xx.165:443 and nothing running on tcp/xx.xx.x

Re: [EMAIL PROTECTED] JSP pages and Apache 2

2005-08-03 Thread John Hicks
Stephen Carville wrote: During a migration from Apache 1 to Apache 2 I found a problem with DirectoryIndex in VirtualHosts I have several Virtual Hosts defined with a DirectoryIndex: ServerName www.nationwide-totalflood.com DocumentRoot/var/jakarta/dpsi-corp/ROOT Director

[EMAIL PROTECTED] Bandwidth quota's?

2005-08-03 Thread Matt Pruett
Is it possible to implement in apache a website bandwidth quota? You see it on a number of hosting companies, where if a site chews up too much the users will eventually get a different site saying something like "site has used up their monthly bandwidth quota". I am mostly interested in protecting

[EMAIL PROTECTED] JSP pages and Apache 2

2005-08-03 Thread Stephen Carville
During a migration from Apache 1 to Apache 2 I found a problem with DirectoryIndex in VirtualHosts I have several Virtual Hosts defined with a DirectoryIndex: ServerName www.nationwide-totalflood.com DocumentRoot/var/jakarta/dpsi-corp/ROOT DirectoryIndex HomePage.jsp inde

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Joshua Slive
On 8/3/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > Now, when I did this once before (it was a while ago) the > FileInfo override was what stopped .htaccess from doing AddType, yes? > That not being there is what does it. Right? Yes. See the "Override" line at http://httpd.apache.org/docs

Re: [EMAIL PROTECTED] Can reverse proxy forward digital certificates.

2005-08-03 Thread Jose Serrano Rodenas
Very Thanks for the information. Anyway, Do you know some resource where explain how to do what you say. Thanks again Axel-Stéphane SMORGRAV wrote: As far as I know, it cannot. What you can do though, is to forward the certificate data as a header variable or in the query string. The data

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Chris Johnson
On Wed, 3 Aug 2005, Joshua Slive wrote: > On 8/3/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > > On Wed, 3 Aug 2005, Joshua Slive wrote: > > > > > > php_flag engine off > > > > > > > > For Apache PHP module, which we have. Not used to using Location > > much. I only want to prevent its

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Joshua Slive
On 8/3/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > On Wed, 3 Aug 2005, Joshua Slive wrote: > > > > php_flag engine off > > > > For Apache PHP module, which we have. Not used to using Location > much. I only want to prevent its use in usr's public_html remember. > The above would turn

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Chris Johnson
On Wed, 3 Aug 2005, Joshua Slive wrote: > So now we know why I was confused. > If you have php turned off by default, then the AllowOverride > directive should prevent .htaccess files from being used to turn it on > again. But you may want to add something like > > > php_flag engine of

Re: [EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Joshua Slive
On 8/3/05, Chris Johnson <[EMAIL PROTECTED]> wrote: > We need to prevent users with URLs of the ~ variety from > doing PHP or other things which execute arbirtary code. But (there's > always a but), at the same time we need to allow it for URLs not of > that type, i.e. all other references.

[EMAIL PROTECTED] Configuration access restriction to public_html.

2005-08-03 Thread Chris Johnson
Hey all, We need to prevent users with URLs of the ~ variety from doing PHP or other things which execute arbirtary code. But (there's always a but), at the same time we need to allow it for URLs not of that type, i.e. all other references. There's the following snippet from httpd.conf

Re: [EMAIL PROTECTED] Memory consumption

2005-08-03 Thread Joe Orton
On Tue, Aug 02, 2005 at 10:49:59PM +0200, Kamil Srot wrote: > Joshua Slive wrote: > >Indeed you have found the problem, I believe: Range headers. In order > >to handle out-of-order range requests (which are allowed by the spec), > >httpd must buffer the entire response. Of course, that is very ba

Re: [EMAIL PROTECTED] mod_frontpage state of the art

2005-08-03 Thread Brian Candler
OK, I think I have solved getting mod_frontpage to work with a mod_rewrite virtual host configuration. For the benefit of the archives, here's what I learned. (1) The CGIs make use of the SERVER_NAME environment variable (2) They then look this up in the httpd.conf pointed to by /usr/local/fro

Re: [EMAIL PROTECTED] warnings in error log

2005-08-03 Thread Malka Cymbalista
I did not have a problem with includes working. My problem that all these warning messages were being written to the error log. In order for includes to work, you need the following in your httpd.conf file: The Options directive after the directive that defines your Document Root must have Inc

[EMAIL PROTECTED] Rewrite and https

2005-08-03 Thread Krist van Besien
Hello, I have a an apache server that proxies requests to a weblogic server that is itself not visible from the web. The apache server serves requests in both http and https. What I want is to pass a parameter back to the weblogic server so that it knows if a request was originally http or https,

Re: [EMAIL PROTECTED] Log Error: "Directory index forbidden by rule" ????? Help!

2005-08-03 Thread Stephen
Dean Maunder wrote: Look in your httpd.conf file for this: -- # DirectoryIndex: sets the file that Apache will serve if a directory # is requested. # # The index.html.var file (a type-map) is used to deliver content- # negotiated documents. The MultiViews Option can

AW: AW: AW: AW: [EMAIL PROTECTED] Too many open files ...

2005-08-03 Thread Oliver Kirchel
Hi Sean, I have good news and bad news. First, the good news - it works now. The bad news are that I get now in my error.log this message: [Wed Aug 3 02:50:03 2005] [warn] send body: filedescriptor (1031) larger than FD_SETSIZE (1024) found, you probably need to rebuild Apache with a larger FD_SE

Re: [EMAIL PROTECTED] Memory consumption

2005-08-03 Thread Kamil Srot
Hi Gary, I found exactly the same code and tried it... it doesn't work in some cases... see other answers to my question by Joshua - it seems to be really problem with the Range headers... Currently my situation is quite bas as our system runs with double autentization and it does server files

RE: [EMAIL PROTECTED] Re: About Apache XML Security library

2005-08-03 Thread Boyle Owen
> -Original Message- > From: Zhenxiao Liu [mailto:[EMAIL PROTECTED] > Sent: Mittwoch, 3. August 2005 03:52 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Re: About Apache XML Security library > > > Hi, all, >I'm new in this area. Could anyone please tell me how to start? I