[us...@httpd] Re: SetEnvIf and query string

2010-11-08 Thread Daniel Ganea
i solved the problem setting in google analytics the path for not using query string: _gaq.push(['_setCookiePath', '/directory1/']); _gaq.push(['_setLocalGifPath', '/directory1/__utm.gif']);

Re: [us...@httpd] Why do apache-devs not provide the x64 version of httpd binary?

2010-11-08 Thread Sharl.Jimh.Tsin
thanks.it is really a good idea :-) Best regards, Sharl.Jimh.Tsin (From China **Obviously Taiwan INCLUDED**) 2010/11/8 Krist van Besien : > On Mon, Nov 8, 2010 at 5:02 AM, Sharl.Jimh.Tsin wrote: >> well,thanks for your reply.it seems to be that i have to bulid it by myself >> now. > > You cou

Re: [us...@httpd] Problems with redirect statement

2010-11-08 Thread Eric Covener
> >            Redirect Permanent /index.html http://retuning.foo/training/lms/ Try just redirecting the root URL -- RedirectMatch ^/$ http://retuning.foo/training/lms/ - The official User-To-User support forum of the Apache HTT

[us...@httpd] Problems with redirect statement

2010-11-08 Thread Smith, Cathy
Folks I'm having a problem getting a redirect to work properly. This is RHEL5, Apache 2.2. I need this to redirect to happen: http://retuning.foo -> http://retuning.foo/training.lms This url works just fine: http://retuning.foo/training.lms It's just the redirect is a problem

[us...@httpd] Skip SSL authentication

2010-11-08 Thread Praveen Venkataramaiah
All, I am trying to configure Apache so that it can pass the SSL_CLIENT_CERT to my back-end code. I can do this fine, but I have an additional requirement that, I do not want Apache to do the SSL authentication, but I want to pass the SSL_CLIENT_CERT to the back-end always and I want the back-e

Re: [us...@httpd] Re: LimitRequestBody http return code

2010-11-08 Thread Mohit Anchlia
On Thu, Nov 4, 2010 at 4:09 PM, Mohit Anchlia wrote: > On Thu, Nov 4, 2010 at 3:40 PM, Eric Covener wrote: >> On Thu, Nov 4, 2010 at 6:38 PM, Mohit Anchlia wrote: >>> On Sun, Oct 31, 2010 at 6:02 PM, Eric Covener wrote: On Sun, Oct 31, 2010 at 8:09 PM, Mohit Anchlia wrote: > On

RE: [us...@httpd] RE: Mod_Proxy with Basic Authentication on Target

2010-11-08 Thread Todd Simons
Found it. ...type-o in the proxy pass configuration. -Original Message- From: Todd Simons Sent: Monday, November 08, 2010 2:30 PM To: users@httpd.apache.org Subject: RE: [us...@httpd] RE: Mod_Proxy with Basic Authentication on Target Nick- Thanks Here is a sample from the logs: 10.x.x.

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Ari King
> Did you allow port 80, or whatever other port you have httpd listening on? Yes, I've allowed access on port 80 as well. In any event, I finally got it working by power-cycling the network switch and rebooting the server. Thanks. Best, Ari --

RE: [us...@httpd] RE: Mod_Proxy with Basic Authentication on Target

2010-11-08 Thread Todd Simons
Nick- Thanks Here is a sample from the logs: 10.x.x.254 - - [08/Nov/2010:14:27:50 -0500] "GET /app/environment/EdiImportService HTTP/1.1" 500 532 The back end owns the user database and prompts for basic authentication. It seems like the Apache in the middle doesn't know how to pass that basi

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Matt Iavarone
On Mon, Nov 8, 2010 at 12:54 PM, Ari King wrote: > On Mon, Nov 8, 2010 at 12:34 PM, Jim Riggs wrote: >> On Nov 8, 2010, at 10:50 AM, Ari King wrote: >> >>> I've configured httpd (version 2.2) to be a proxy for Tomcat (version >>> 6.0.26) on a single CentOS (version 5 Final) server; unfortunately,

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Ari King
On Mon, Nov 8, 2010 at 12:56 PM, Eric Covener wrote: >> However if I use any other computer on the network >> the proxy fails/times out. > > During what stage? what do the logs say? Does it only happen with a POST? What do you mean 'stage'? The logs -- access_log, error_log, and catalina.out --

Re: [us...@httpd] mass proxying via mod_rewrite

2010-11-08 Thread Sai A
Hey Nick, Thanks for the reply. I didn't know about ProxyPassMatch. I am using Apache 2.0 (I forgot to mention that in my original mail) and I couldn't see ProxyPassMatch in that. I however found a ProxyMatch directive in that, would that work for this need? I'd have about 5k client URLs. On Mon

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Eric Covener
> However if I use any other computer on the network > the proxy fails/times out. During what stage? what do the logs say? Does it only happen with a POST? - The official User-To-User support forum of the Apache HTTP Server Proje

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Ari King
On Mon, Nov 8, 2010 at 12:34 PM, Jim Riggs wrote: > On Nov 8, 2010, at 10:50 AM, Ari King wrote: > >> I've configured httpd (version 2.2) to be a proxy for Tomcat (version >> 6.0.26) on a single CentOS (version 5 Final) server; unfortunately, >> all requests via the proxy time out. If I bypass the

Re: [us...@httpd] mass proxying via mod_rewrite

2010-11-08 Thread Nick Kew
On Mon, 8 Nov 2010 23:14:54 +0530 Sai A wrote: > Hi Apache users/experts, > > I am trying to achieve proxying using mod_rewrite. That seems to be your mistake. I am trying to do the > following mappings: > Let www.company.com/foo/bar remain as such > Let all special subdomains.company.com/foo

Re: RE: [us...@httpd] Apache2, MySQL and mod_dbd

2010-11-08 Thread Dave Mansfield
Niklas Johansson wrote: Hello, Thank you for your answer. What I have learned now is that lmysqlclient is named differently in OSX and Linux. Hence, since I planned to develop on OSX but deploy on Linux, I think I will need to abandon OSX for this projekt and use Linux. I thought that it w

Re: [us...@httpd] RE: Mod_Proxy with Basic Authentication on Target

2010-11-08 Thread Nick Kew
On Mon, 8 Nov 2010 09:00:43 -0500 Todd Simons wrote: > Does anyone have any ideas? What does the error log say? > We have an internal application that uses basic authentication (the browser > prompts the user for login). We need to make this publically available > using Apache Reverse Proxi

[us...@httpd] mass proxying via mod_rewrite

2010-11-08 Thread Sai A
Hi Apache users/experts, I am trying to achieve proxying using mod_rewrite. I am trying to do the following mappings: Let www.company.com/foo/bar remain as such Let all special subdomains.company.com/foo/bar remain as such Proxy www.client1.com/admin to http://admin.company.com/client1name Proxy w

Re: [us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Jim Riggs
On Nov 8, 2010, at 10:50 AM, Ari King wrote: > I've configured httpd (version 2.2) to be a proxy for Tomcat (version > 6.0.26) on a single CentOS (version 5 Final) server; unfortunately, > all requests via the proxy time out. If I bypass the proxy using the > full tomcat url, the expected data is

[us...@httpd] Httpd proxy of Tomcat instance continually timing out

2010-11-08 Thread Ari King
Hi all, I've configured httpd (version 2.2) to be a proxy for Tomcat (version 6.0.26) on a single CentOS (version 5 Final) server; unfortunately, all requests via the proxy time out. If I bypass the proxy using the full tomcat url, the expected data is returned. Following are the proxy configurat

RE: [us...@httpd] How to proxy FTP protocol with WinSCP client ?

2010-11-08 Thread denis.barbaron
Hi Krist, Yes of course, my WinSCP client use passive FTP and apache listen on the control port (21) ! When the FTP server send back the port to connect to for DATA, the client attempts to open the connection using this dynamic port, but the apache proxy refused to forward the HTTP CONNECT to

[us...@httpd] RE: Mod_Proxy with Basic Authentication on Target

2010-11-08 Thread Todd Simons
Does anyone have any ideas? From: Todd Simons Sent: Friday, November 05, 2010 1:53 PM To: users@httpd.apache.org Subject: [us...@httpd] Mod_Proxy with Basic Authentication on Target Hello All We have an internal application that uses basic authentication (the browser prompts the user for login)

Re: [us...@httpd] How to proxy FTP protocol with WinSCP client ?

2010-11-08 Thread Krist van Besien
On Mon, Nov 8, 2010 at 11:56 AM, wrote: > The AlllowCONNECT directive permits only to use static ports, and I didn't > find other directives to solve my problem ! > The same configuration with WinSCP client works fine with "squid", but I > prefer to use apache for other reasons, so can you help

Re: [us...@httpd] Why do apache-devs not provide the x64 version of httpd binary?

2010-11-08 Thread Jorge Schrauwen
Yes, It's best to compile them your self. I'm not sure the ones on blackdot are up to date. Especially the modules, so compiling your self is the best route. Also it isn't very hard. A lot of progress can still be made on that front, but 2.2 is doable with a bit of effort. Here is hoping 2.3 wil

[us...@httpd] How to proxy FTP protocol with WinSCP client ?

2010-11-08 Thread denis.barbaron
Hello, I encounter a problem to proxy FTP protocol with my WinSCP client (strong constraint) ! The first control connection (HTTP CONNECT on port 21) with the FTP server is well established but the second one (data connection : HTTP CONNECT on dynamic port provided by the server) is refused from