[us...@httpd] connection/bandwidth limiting

2009-07-30 Thread Gary Smith
Under 2.2, is there a way to limit number of connections per IP? Mod_bandwidth is for 1.3, and mod_bw hasn't been updated since 2005. We're having a problem with leachers on a web site and we would like to limit the number of connections. Gary

[us...@httpd] Terminate SSL and forward to Tomcat

2009-07-30 Thread /U
I have an installation of Tomcat with named vhosts. I need an Apache webserver as the front-end to do the following: a) Require HTTPS for all URLs under /secure/ b) for all requests of the form https://host/secure(/*), - terminate SSL - rewrite the URL to add a Host entry

RE: [us...@httpd] Don't require authentication on a subfolder

2009-07-30 Thread Scott Brady
> -Original Message- > From: Eric Covener [mailto:cove...@gmail.com] > Sent: Thursday, July 30, 2009 3:45 PM > Any chance you have SSPI on in a Location container that would apply? I'm not sure I understand the question. (I should probably point out that I'm not an apache expert by any

Re: [us...@httpd] Don't require authentication on a subfolder

2009-07-30 Thread Eric Covener
On Thu, Jul 30, 2009 at 5:29 PM, Scott Brady wrote: > Doesn't look like it nope.  If I interpret the docs on the > directive, what I have SHOULD override the settings on "/", so it may just be > some other setting specific to SSPI I need (I have a question into a forum > specific to that module

RE: [us...@httpd] Don't require authentication on a subfolder

2009-07-30 Thread Scott Brady
-Original Message- From: Peter Schober [mailto:peter.scho...@univie.ac.at] Sent: Thursday, July 30, 2009 2:10 PM > * Scott Brady [2009-07-30 21:50]: > > # This is the folder I want freely accessible > > > > SSPIAuth Off > >

Re: [us...@httpd] Don't require authentication on a subfolder

2009-07-30 Thread Peter Schober
* Scott Brady [2009-07-30 21:50]: > # This is the folder I want freely accessible > > SSPIAuth Off > Does the generic way of Allow from all Satisfy any work? -peter

[us...@httpd] Don't require authentication on a subfolder

2009-07-30 Thread Scott Brady
I'm trying to find a way to require authentication (using mod_auth_sspi) on an entire website except for one specific folder, which I want freely accessible. However, I've been having issues getting that to work. I've tried setting SSPIAuth Off on the subfolder, but that didn't work. Is there s

Re: [us...@httpd] Serving partial data of in-memory common data set

2009-07-30 Thread S.A.
Hi André, > > > > The reason why I am not suspecting mysql was that the > mysql > > log does indicate that it is getting all the requests > and > > it is servicing them. As I have stated before, some of > the > > users though are not getting images. > > > Can you explain this a bit ? When you sa

Re: [us...@httpd] Apache + Jetty - proxy: error reading status line

2009-07-30 Thread Prashant Keshvani
Hi Patrick, Few month back, even I got the same error. At that time I googled the internet and came across this https://issues.apache.org/bugzilla/show_bug.cgi?id=37770 I think (but not sure) this problem occurs because httpd makes long lived connection to the downstream applic

[us...@httpd] Help with executing cgi progams

2009-07-30 Thread Michael Di Martino
I trying to run cricket on my Apache 2 web server using suexec. However, I getting the following error every time I try to launch the cgi program. [2009-07-30 09:13:15]: uid: (524/cricket) gid: (525/525) cmd: grapher.cgi [2009-07-30 09:31:11]: uid: (524/cricket) gid: (525/525) cmd: grapher.cgi [2

Re: [us...@httpd] Re: WELCOME to users@httpd.apache.org

2009-07-30 Thread Jorge Schrauwen
On Thu, Jul 30, 2009 at 1:09 PM, André Warnier wrote: > Sudheer Puppala wrote: > >> Hi >> >> I am java/flex programmer since 1yrs. I have a requirement of write a >> handler at apache http server side using perl. >> >> ... > Hi. > The good news is that it sounds perfectly feasible. > The bad n

Re: [us...@httpd] segmentation faults

2009-07-30 Thread Mario Bachmann
i did not solve it, but apache works again with the following "old" versions (gentoo): dev-libs/apr-util-1.3.4 app-admin/apache-tools-2.2.11 www-servers/apache-2.2.11-r3 dev-lang/php-5.2.10-r1 perhaps apr-util-1.3.8 caused the segfault. Mario Am Thu, 30 Jul 2009 15:03:31 +0200 schri

Re: [us...@httpd] segmentation faults

2009-07-30 Thread André Warnier
A frequent reason for segmentation faults is when there is a binary module somwhere being called, which does not match the platform (such as something compiled for Solaris, which you try to run under Linux). Maybe check your SSL or PHP libraries ? Chandranshu . wrote: Well, you can configure

Re: [us...@httpd] segmentation faults

2009-07-30 Thread Chandranshu .
Well, you can configure your system to generate a core dump on a segmentation fault and then use GDB to investigate it. Alternatively, you can directly attach this process in GDB, wait for a segmentation fault and then examine the stack to see what the program was doing. Regards Chandranshu On Th

[us...@httpd] Re: Long running Apache 2.2 process

2009-07-30 Thread Chandranshu .
I opened GDB and attached the php-cgi process. We were able to determine the the PHP script it was executing. After that, inspecting the source code of the PHP file gave out all the reasons why it was running for so long. The question now is different. I want to understand the circumstances under

Re: [us...@httpd] reverse proxy mapping not working properly

2009-07-30 Thread Chris
2009/7/30 Igor Galić : > > Hi Cris, > > [Snip] > >> >> ProxyRequests Off >> >> >> Order deny,allow >> Deny from all >> Allow from .example.com >> >> >> ProxyPass/marketing/ http://192.168.25.25:3 > > I would get rid of this line: > >> ProxyPassReverse/marketing/ h

[us...@httpd] segmentation faults

2009-07-30 Thread Mario Bachmann
Hi there, i get segfaults in the error_log when i connect to the web-site with my browser. The browser shows an empty site (completely empty). Some ideas? I recompiled apache-2.2.12 several times. i am on gentoo linux. i start: apache2 -D DEFAULT_VHOST -D INFO -D LANGUAGE -D SSL -D SSL_DEFAUL

Re: [us...@httpd] Issues with vhosts: Service Temporarily Unavailable

2009-07-30 Thread Norman Khine
I found the problem as soon as i sent the message ;) it was an issue with my first vhost entry as it was rewriting to an itools (www.hforge.org) server on port 8080, but at the time it was not up and running. I assumed that the apache will still work as it will read the first entry on the httpd.con

Re: [us...@httpd] reverse proxy mapping not working properly

2009-07-30 Thread Igor Galić
Hi Cris, [Snip] > > ProxyRequests Off > > > Order deny,allow > Deny from all > Allow from .example.com > > > ProxyPass/marketing/ http://192.168.25.25:3 I would get rid of this line: > ProxyPassReverse/marketing/ http://192.168.25.25:3 The should suf

Re: [us...@httpd] Re: WELCOME to users@httpd.apache.org

2009-07-30 Thread André Warnier
Sudheer Puppala wrote: Hi I am java/flex programmer since 1yrs. I have a requirement of write a handler at apache http server side using perl. ... Hi. The good news is that it sounds perfectly feasible. The bad news is that you are on the wrong list. Go to this website : http://perl.apache.

[us...@httpd] Re: WELCOME to users@httpd.apache.org

2009-07-30 Thread Sudheer Puppala
Hi I am java/flex programmer since 1yrs. I have a requirement of write a handler at apache http server side using perl. Scenario: 1. My flex application request for a particular file to the apache server. 2. The server upon receiving a request look for the mime type of the file. I

[us...@httpd] reverse proxy mapping not working properly

2009-07-30 Thread Chris
I've been trying to configure a reverse HTTP proxy on RHEL 5.3 with httpd-2.2.3-22.el5_3.2. I have three virtual hosts on the same IP and I would like to setup reverse proxy for them. The following are my internal servers: http://marketing.company.tld:3 --> 192.168.25.25 http://services.

Re: [us...@httpd] apache problems with number of cgi requests

2009-07-30 Thread André Warnier
Digvijoy Chatterjee wrote: Apache does not process them concurrently but serially all of them go to completion .( no error code etc..) One request runs , other requests wait to get processed, and so on. Have you tried KeepAlive off ? ---