Re: [EMAIL PROTECTED] Disable directory browsing

2007-09-29 Thread Rikard Bosnjakovic
On 27/09/2007, Joshua Slive [EMAIL PROTECTED] wrote: I should have also mentioned that you need to remove any Options All, which includes Indexes. There is no Options All either. I am using the out-of-the-box httpd.conf that came with Apache, but I will try the tip regarding using Options None

[EMAIL PROTECTED] Apache as Reverse Proxy and Single-Sign On for Tomcat

2007-09-29 Thread Werner Schalk
Hello, I would like to use Apache in a rather obscure way and I hope you guys can give me some insight on how to solve the problem I am facing. Basically I would like to install Apache as reverse proxy in front of two Tomcat servers (siteA and siteB) and let Apache perform some sort of

Re: [EMAIL PROTECTED] Reverse Proxy - Client IP

2007-09-29 Thread Joshua Slive
On 9/29/07, K Anand [EMAIL PROTECTED] wrote: I finally managed to get the client IP. I had to use mod_proxy_add_forward.c and mod_rpaf Ahhh, that's because you're using the obsolete 1.3. It is set in 2.x. X-Forwarded-For header was not getting set. So I had to use

[EMAIL PROTECTED] Server Missbehaving, why?

2007-09-29 Thread Tomas Larsson
Hi group. Not that I would be able to solve it, but I'd like to know. Background: One of my homepages is hosted on servage.net (www.ebaman.com) They use loadbalanced clustered apache-servers if I understand thing correctly. Now the problem is as follows. When uploading large files (above some

[EMAIL PROTECTED] Investigating high harddrive load

2007-09-29 Thread Samuel Vogel
Hey people, I would like to know if there is any way to debug what vhost is causing the high load on my harddrive, that I'm experiencing. To be more specific: When I run top, 80% of my CPU time is in i/o wait. How could I find out, what vhost is causing this? Regards, Samy

[EMAIL PROTECTED] 127.0.0.1 access_log errors

2007-09-29 Thread Grant
I've been getting many errors like this in ssl_access_log: 127.0.0.1 - - [28/Sep/2007:09:07:29 -0700] GET / - - 400 470 and now access_log has started printing these: 127.0.0.1 - - [28/Sep/2007:03:10:07 -0700] GET / HTTP/1.0 404 24 - Apache (internal dummy connection) I read here:

Re: [EMAIL PROTECTED] 127.0.0.1 access_log errors

2007-09-29 Thread Joshua Slive
On 9/29/07, Grant [EMAIL PROTECTED] wrote: I've been getting many errors like this in ssl_access_log: 127.0.0.1 - - [28/Sep/2007:09:07:29 -0700] GET / - - 400 470 and now access_log has started printing these: 127.0.0.1 - - [28/Sep/2007:03:10:07 -0700] GET / HTTP/1.0 404 24 - Apache

[EMAIL PROTECTED] unable to copy dot prefixed files to Apache powered WebDAV shares

2007-09-29 Thread Ali, Saqib
Hello All, I am running Apache/2.0.52 on RedHat Enterprise Linux 4.0. I have WebDAV enabled on certain directories and I able to read/write regular files in the WebDAV shares. However if I try to upload a file that has a filename prefixed with a dot (e.g: .temp .pine etc) the upload fails. And

Re: [EMAIL PROTECTED] 127.0.0.1 access_log errors

2007-09-29 Thread Joshua Slive
On 9/29/07, Grant [EMAIL PROTECTED] wrote: Ok, thanks Joshua. Do these entries indicate that I might need to make a change in my prefork settings? I'm currently using: StartServers10 MinSpareServers 10 MaxSpareServers 20 MaxClients 256

[EMAIL PROTECTED] Multiple concurrent instances of apache

2007-09-29 Thread Ian Johnson
To Whom is able to help: I am trying to install multiple instances of apache 2.2.6 on a gentoo box. Having done what I thought was my homework, I thought I would be able to simply launch the apache deamons with -d new.conf file pointing to an independant configuration structure and thus be off

Re: [EMAIL PROTECTED] Server Missbehaving, why?

2007-09-29 Thread Michael Conlen
It depends on it's load balancing solution My guess is that the load balancer is running out of memory and eventually looses information on older connections and your packets get redirected to a new server which doesn't know anything about you or the load balancer just terminates the

Re: [EMAIL PROTECTED] 127.0.0.1 access_log errors

2007-09-29 Thread Grant
Ok, thanks Joshua. Do these entries indicate that I might need to make a change in my prefork settings? I'm currently using: StartServers10 MinSpareServers 10 MaxSpareServers 20 MaxClients 256 MaxRequestsPerChild 100 No, those log

Re: [EMAIL PROTECTED] Investigating high harddrive load

2007-09-29 Thread Brian A. Seklecki
Basic log analysis should be pretty obvious? Do you have a standard format for vhost log subdirs? /var/log/${vhost}/{access,error}_log ? $ sudo tail -F /var/log/*/access_log It should become obvious very quickly -- unless it's a CGI/PHP script running a disk-intensive code block. ~BAS On

Re: [EMAIL PROTECTED] reverse proxy with ldap authentication

2007-09-29 Thread John P. Dodge
On Thu, 27 Sep 2007 [EMAIL PROTECTED] wrote: Hi all, I try to install a reverse proxy with ldap authentication : it works with ldap but not with ldaps. I've got this notice about LDAP and SSL in the log [Wed Sep 26 16:57:40 2007] [notice] LDAP: Built with OpenLDAP LDAP SDK [Wed Sep 26

Re: [EMAIL PROTECTED] 127.0.0.1 access_log errors

2007-09-29 Thread William A. Rowe, Jr.
Grant wrote: Ok, would you use 0? I was concerned about a process going haywire eventually. Whoa - there's zero reason to use MaxRequestsPerChild unless you encounter a specific resource allocation/unbounded utilization flaw in a specific (or mystery) module you've loaded. In nearly ever