Re: [users@httpd] Basic Authentication over reverse proxy

2005-06-17 Thread K Anand
Josh, here is what the apache 1.3 manual says about Directory and Location directives : Location Directive : " For all origin (non-proxy) requests, the URL to be matched is of the form /path/, and you should not include any http://servername prefix. For proxy requests, the URL to be match

Re: [users@httpd] Basic Authentication over reverse proxy

2005-06-17 Thread K Anand
Hi Josh, Think you missed one of my messages...I had managed to get it working..yes, you have to give the proxied hostname ie instead of giving , it should have been http://a.b.c.d/xxx/>...I also tried it with Location directive..that was also working... Thanx Anand - Origina

Re: [users@httpd] Not Logging Proxy Requests

2005-06-17 Thread Joshua Slive
On 6/17/05, Tim Traver <[EMAIL PROTECTED]> wrote: > Joshua, > > actually, PROXY_ADDR is an environment variable that is created by > mod_extract_forwarded... It is possible that this module is setting the variable too late in request processing for mod_setenif to get at it. > > But, HTTP_X_F

Re: [users@httpd] Not Logging Proxy Requests

2005-06-17 Thread Tim Traver
Joshua, Just verified that these are the RAW headers that the server is seeing : This is from a ktrace session on the server (with x's to preserve anonymity): 64160 httpdGIO fd 4 read 558 bytes "GET /info.php HTTP/1.0\r Host: tim.x.com\r Accept: text/xml,applica

Re: [users@httpd] 2.0.53 Returning 302 Out of the Blue

2005-06-17 Thread Hunter Hillegas
It appears my server is making a liar out of me. I just checked again and I get a 200... I have no idea what is going on. I'll have to keep an eye on it. Thanks for taking the time to look. > From: Joshua Slive <[EMAIL PROTECTED]> > Reply-To: > Date: Fri, 17 Jun 2005 17:22:07 -0400 > To: > Su

Re: [users@httpd] 2.0.53 Returning 302 Out of the Blue

2005-06-17 Thread Joshua Slive
On 6/17/05, Hunter Hillegas <[EMAIL PROTECTED]> wrote: > http://www.nofx.org > > On 6/17/05, Hunter Hillegas <[EMAIL PROTECTED]> wrote: > >> Yesterday the server started returning all pages with response code 302. > > > > It would save a long game of Q&A if you would give us a real URL to test. I

RE: [users@httpd] Missing User-Agent:

2005-06-17 Thread Michael D. Berger
Thanks for your suggestion. I caught the packets with tethereal and found the problem: I was addressed by IP address rather than URL. I reject these, especially since I use dynamic dns. In addition, the messages are buffer oferflow attacks. I address another issue with these in a message I jus

[users@httpd] NTLMSSP in ethereal

2005-06-17 Thread Michael D. Berger
On RH, I have been capturing http packets with tethereal and examining them with ethereal. In one obvious buffer overflow attack I found: Frame size = 1506 IP total length = 1492 NTLMSSP data size = 1044 What is the NTLMSSP? The hex dump shows it to be in >addition< to the ethernet fra

Re: [users@httpd] Not Logging Proxy Requests

2005-06-17 Thread Tim Traver
Joshua Slive wrote: On 6/17/05, Tim Traver <[EMAIL PROTECTED]> wrote: CustomLog /local/logs/apache/access combined env=!dontlog SetEnvIf Proxy_Addr "209\.132\.98\.35" dontlog I have tested the following line, and it works : SetEnvIf Remote_Addr "209\.132\.98\.35" dontlog But I

Re: [users@httpd] 2.0.53 Returning 302 Out of the Blue

2005-06-17 Thread Hunter Hillegas
http://www.nofx.org > From: Joshua Slive <[EMAIL PROTECTED]> > Reply-To: > Date: Fri, 17 Jun 2005 16:57:33 -0400 > To: > Subject: Re: [EMAIL PROTECTED] 2.0.53 Returning 302 Out of the Blue > > On 6/17/05, Hunter Hillegas <[EMAIL PROTECTED]> wrote: >> Yesterday the server started returning all

Re: [users@httpd] Not Logging Proxy Requests

2005-06-17 Thread Joshua Slive
On 6/17/05, Tim Traver <[EMAIL PROTECTED]> wrote: > CustomLog /local/logs/apache/access combined env=!dontlog > > SetEnvIf Proxy_Addr "209\.132\.98\.35" dontlog > > I have tested the following line, and it works : > > SetEnvIf Remote_Addr "209\.132\.98\.35" dontlog > > But I don't want to refu

Re: [users@httpd] 2.0.53 Returning 302 Out of the Blue

2005-06-17 Thread Joshua Slive
On 6/17/05, Hunter Hillegas <[EMAIL PROTECTED]> wrote: > Yesterday the server started returning all pages with response code 302. It would save a long game of Q&A if you would give us a real URL to test. Joshua. - The official U

[users@httpd] Not Logging Proxy Requests

2005-06-17 Thread Tim Traver
Hi all, ok, I am at a point where I do not want to log a request that is coming from a proxy. I've looked, and it looks like I can use the CustomLog directive with a conditional environment variable at the end of it to accomplish this. The problem I am having is that the environment variable

Re: [users@httpd] Forwarding requests on a virtual host to another computer on a internal lan

2005-06-17 Thread Joshua Slive
On 6/17/05, Trung Nguyen <[EMAIL PROTECTED]> wrote: > Is this you're looking for? > > > redirect / http://www.mydomain2.com > No, because he said that only only one of the internal hosts has a publically-accessible IP address. So he does, indeed, need to use ProxyPass: NameVirtualHost

[users@httpd] 2.0.53 Returning 302 Out of the Blue

2005-06-17 Thread Hunter Hillegas
We have a 2.0.53 server that has been running well since April on RHEL3. We have a site that is a virtual host. The configuration is very straightforward (directives at bottom of message). The site has been running fine for months. Yesterday the server started returning all pages with response co

RE: [users@httpd] Forwarding requests on a virtual host to another computer on a internal lan

2005-06-17 Thread Martin B. Nielsen
It could be something like that yes. Just to clarify: Router / \ Server 1Server 2 The router forwards all requests on port 80 to server 1. What I want is that if a request for http://test.sveg.servemp3.com is received, it should be directed to Server 2. On my interna

Re: [users@httpd] Compiling httpd-2.0.54 issue - FNM_PERIOD undeclared

2005-06-17 Thread Joshua Slive
On 6/17/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > All, > > I'm having some issues compiling httpd-2.0.54 > I've configured apache like this > > ./configure --prefix=/usr/local/httpd-2.0.54 --enable-ldap > --enable-auth-ldap --enable-so --enable-ssl > --with-apr=/usr/local/apr-1.1.1/bi

RE: [users@httpd] Forwarding requests on a virtual host to another computer on a internal lan

2005-06-17 Thread Trung Nguyen
Is this you're looking for? redirect / http://www.mydomain2.com -Original Message- From: Martin B. Nielsen [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 12:31 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] Forwarding requests on a virtual host to another compu

[users@httpd] Compiling httpd-2.0.54 issue - FNM_PERIOD undeclared

2005-06-17 Thread tsr
All, I'm having some issues compiling httpd-2.0.54 Compilation stops with /usr/local/apr-1.1.1/build-1/libtool --silent --mode=compile gcc -g -O2 -pthread-DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE -DAP_HAVE_DESIGNATED_INITIALI ZER -I/usr/local/apr-1.1.1/include/apr-1 -I

[users@httpd] Forwarding requests on a virtual host to another computer on a internal lan

2005-06-17 Thread Martin B. Nielsen
Hi All. I'm sorry if this question has been asked before, but I've just have to ask: I have 2 computers running Redhat 9.0, running Apache/2.0.40 Server on both, and I'm wondering, is there any (preferably simple) way to redirect a virtual host on server 1 to server 2, when I have only one public

[users@httpd] very bizarre "(13)Permission denied" problem

2005-06-17 Thread Martin, Jeremy
Hi, We are having an odd problem with certain files showing up as "access denied" "403 forbidden" in Apache2, CentOS 4 (based on RHES4), PHP5, but this is not a PHP related problem specifically.. For example, the file "bad.html" gives these errors. (13)Permission denied: access to /bad.html deni

Re: [users@httpd] Using Apache Error Pages

2005-06-17 Thread Ian Stuart
Marc de Wet wrote: > Hi K. Anand, > I understand what you have sent me,but in the > httpd.conf,there is a section where you can tell apache to > use its own error pages,you just need to uncomment them,or > so it looks,but when I do it still displays the IE error > pages. The apache error pages I wa

Re: [users@httpd] URL Mapping or ReWriting Help

2005-06-17 Thread Joshua Slive
On 6/17/05, Andrew Mull <[EMAIL PROTECTED]> wrote: > Hello, > > Hope this can be done. > > What I am trying to figure out is how I can make a subdirectory of a > site look like the document root for all of its files and > subdirectories? > > For example: > > Say www.domain.com/test exists, and

Re: [users@httpd] Basic Authentication over reverse proxy

2005-06-17 Thread Joshua Slive
On 6/17/05, K Anand <[EMAIL PROTECTED]> wrote: > > ProxyPass /xxx/ http://a.b.c.d/xxx > ProxyPassReverse /xxx/ http://a.b.c.d/xxx I believe (though I can't remember testing this much myself) that requires a full url including http://hostname/. An easier

Re: [users@httpd] Apache with two cgi-bins

2005-06-17 Thread Aman Raheja
You got that right. Make sure you have Include "conf/ss.conf" in your httpd.conf Get back with the configuration, if it doesn't work for you. Aman Raheja Kory Wheatley wrote: I''m configuring my Apache 2.0 to run an Non Secure and Secure Server on the same instance. How do you configure two sep

Re: [users@httpd] Apache secure and non secure server cgi-bin setup

2005-06-17 Thread Joshua Slive
On 6/16/05, Kory Wheatley <[EMAIL PROTECTED]> wrote: > I''m configuring my Apache 2.0 to run a Non Secure and Secure Server > on the same instance. > How do you configure to separate cgi-bin paths for the secure and > non-secure server? > > In the 'httpd.conf" file there is a ScriptAlias /cgi-bi

[users@httpd] URL Mapping or ReWriting Help

2005-06-17 Thread Andrew Mull
Hello, Hope this can be done. What I am trying to figure out is how I can make a subdirectory of a site look like the document root for all of its files and subdirectories? For example: Say www.domain.com/test exists, and "www.domain.com" is a VirtualHost and "test" is a subdirectory of th

Re: [users@httpd] Using Apache Error Pages

2005-06-17 Thread Marc de Wet
Hi K. Anand, I understand what you have sent me,but in the httpd.conf,there is a section where you can tell apache to use its own error pages,you just need to uncomment them,or so it looks,but when I do it still displays the IE error pages. The apache error pages I want to use are the default ones

Re: [users@httpd] Using Apache Error Pages

2005-06-17 Thread K Anand
>From what I understand, this is not a server issue...IE is not displaying the message that it is getting from the server but is showing its own message... >From the apache manual : " Microsoft Internet Explorer (MSIE) will by default ignore server-generated error messages when they are "too smal

[users@httpd] Using Apache Error Pages

2005-06-17 Thread Marc de Wet
I am running Win XP,apache 2.0.x,PHP 5.0, with Maxthon browser. I am also quite new to the Apache web Server experience so please bear with me. When I try to get Apache to use its own internal error pages I still get IE's pages. Can someone please tell me in simple language how I go about activatin

Re: [users@httpd] upload limitation

2005-06-17 Thread oxfordmusic.net
Can somebody give me a clue why this is happen. Here is my apache log file : [client 202.127.109.90] PHP Warning: POST Content-Length of 15115468 bytes exceeds the limit of 8388608 bytes in Unknown on line 0, referer: http://file.carsurin.biz/upload-files.php Does anyone knows how to increase

[cli-users] Config error: aspnet_isapi.dll not found

2005-06-17 Thread Nicolas Ganivet
I have installed mod_aspdotnet on a Windows 2003 server, and modified the Apache configuration file according to your documentation. When I access a .NET application the browser hangs (windows flag constantly waving) and I get the folowing error in Apache error log: System.TypeInitializationExc

[users@httpd] upload limitation

2005-06-17 Thread Ressa Restullah
Can somebody give me a clue why this is happen. Here is my apache log file : [client 202.127.109.90] PHP Warning: POST Content-Length of 15115468 bytes exceeds the limit of 8388608 bytes in Unknown on line 0, referer: http://file.carsurin.biz/upload-files.php Does anyone knows how to increase th

RE: [users@httpd] ProxyPass with variables...

2005-06-17 Thread Axel-Stéphane SMORGRAV
If it almost works, we are almost not going to change it. Actually I do not understand how your configuration can possibly work for any other URL than http://app.mydomain.com/client1 which would be passed to the backend as http://client1.app.mydomain.com/b2b, whereas http://app.mydomain.com/cli

RE: [users@httpd] Apache with two cgi-bins

2005-06-17 Thread Boyle Owen
> -Original Message- > From: Kory Wheatley [mailto:[EMAIL PROTECTED] > Sent: Freitag, 17. Juni 2005 08:45 > To: users@httpd.apache.org > Subject: [EMAIL PROTECTED] Apache with two cgi-bins > > > I''m configuring my Apache 2.0 to run an Non Secure and Secure Server > on the same instance.

Re: [users@httpd] Basic Authentication over reverse proxy SOLVED

2005-06-17 Thread K Anand
I managed to get it working...What I had to put in was not but http://a.b.c.d/> Anand - Original Message - From: "K Anand" <[EMAIL PROTECTED]> To: Sent: Friday, June 17, 2005 11:21 AM Subject: [EMAIL PROTECTED] Basic Authentication over reverse proxy > I want to do basic authenticati

[users@httpd] No services installed for apache2

2005-06-17 Thread Claire Wastiaux
Hi, I've been trying many times to install apache 2 (the last version) with the MSI installer on windows XP, but it failed each time. I always got the error: "unable to find the specified file", "no apache 2 services installed". The first time I also had the "no listen socket available, could not b