Re: [EMAIL PROTECTED] Authenticating Proxy Server

2008-04-17 Thread Emmanuel E
Try using NTLM which provides some level of security or else try digest authentication using mod_auth_digest Roy Pearce wrote: Hi Nils, Thanks for your reply. Our proxy server is a forward proxy server, not a reverse one so I haven't used the ProxyPass and ProxyPassReverse directives. I

Re: [EMAIL PROTECTED] Browser handling of 413 Request Entity Too Large

2008-04-17 Thread Joe Orton
On Tue, Apr 15, 2008 at 05:01:52PM -0700, Ray Van Dolson wrote: Hi all, running into this on an old Apache 2.0.46 installation (actually httpd-2.0.46-70.ent from RHEL 3 Update 9). When a user attempts to upload a large file it's exceeding the LimitRequestBody size and Apache returns a 413

[EMAIL PROTECTED] Tons of Segfaults in Apache-Prefork 2.2.4

2008-04-17 Thread Markus Meyer
Hi all, we experience a lot of threads segfaulting with our Apaches. There are about 300 dying threads per day. The error in syslog is the following: Apr 16 23:51:41 foo-bar kernel: httpd[24629]: segfault at 7fffae529f98 rip 2b2ffd6408b7 rsp 7fffae529ea0 error 6 I wish I could

[EMAIL PROTECTED] mod_mem_cache caches incomplete content

2008-04-17 Thread Frederic Paillart
Hi all, I'm using mod_mem_cache to cache iso files provided by tomcat backend server (using mod_http_proxy). During the first client download, the iso file is stored into this cache. If this client stops prematurely the download, the cache contains an incomplete part of this iso file.

[EMAIL PROTECTED] mod_proxy_html and segmentation fault

2008-04-17 Thread Melanie Pfefer
hi, I am getting a segmentation fault when I use mod_proxy_html so I wonder if this is due to a compilation error, a bug, a mis-configuration…. RewriteEngine On RewriteRule ^/(.*XYZ.*) http://backend:8080/abc/$1 [P,L] Or ProxyPass /XYZ:001 http://backend:8080/abc/XYZ:001

Re: [EMAIL PROTECTED] url proxying

2008-04-17 Thread Krist van Besien
On Wed, Apr 16, 2008 at 10:23 AM, Melanie Pfefer [EMAIL PROTECTED] wrote: Hi Krist,all indeed the cause was related to redirects on the backend application. The developers fixed this issue and the url proxying is working now. I appreciate your help and support. thank you. You're welcome.

RE: [EMAIL PROTECTED] mod_userdir issue

2008-04-17 Thread Sawyers, Brandon W
Well, I've figured out a workaround for the issue. I just added an alias to httpd.conf to point /~bob to /home/bob/public_html and it works fine when I try to go to http://my.webserver.com/~bob/. If anyone has any idea what was going, let me know. I'm still really confused by it.

Re: [EMAIL PROTECTED] Authenticating Proxy Server

2008-04-17 Thread Roy Pearce
Hi Nick, Thanks for your comments. Nick Kew wrote: On Tue, 15 Apr 2008 15:19:01 +0100 Roy Pearce [EMAIL PROTECTED] wrote: The browser appears not to like talking to an SSL-enabled proxy server. Sounds to me like a browser misconfiguration. All I changed was the port number

Re: [EMAIL PROTECTED] Tons of Segfaults in Apache-Prefork 2.2.4

2008-04-17 Thread Markus Meyer
Markus Meyer schrieb: Hi all, we experience a lot of threads segfaulting with our Apaches. There are about 300 dying threads per day. The error in syslog is the following: Apr 16 23:51:41 foo-bar kernel: httpd[24629]: segfault at 7fffae529f98 rip 2b2ffd6408b7 rsp 7fffae529ea0

Re: [EMAIL PROTECTED] Single Client Simultaneous Page Load Issue

2008-04-17 Thread Krist van Besien
On Wed, Apr 16, 2008 at 9:03 PM, Robert Conrad [EMAIL PROTECTED] wrote: I am aware of the browser limitation, however that is certainly not the problem. The simplest way I can explain it is this: if I load two pages with nothing but reams of text (no images, no included files, nothing else)

[EMAIL PROTECTED] More than one SSL Certificate/Virtual Host

2008-04-17 Thread Campbell, Lance
Apache 2.2 I want to get two virtual hosts to work on my install of apache: www.a.edu http://www.a.edu/ and www.b.edu http://www.b.edu/ . I already have one certificate working fine for SSL. How do I get the other to work? I created two certificates. The first one worked fine. I added

Re: [EMAIL PROTECTED] More than one SSL Certificate/Virtual Host

2008-04-17 Thread Ray Van Dolson
On Thu, Apr 17, 2008 at 10:01:23AM -0500, Campbell, Lance wrote: I thought if I copied the SSL virtual host and changed the file reference to the new ssl.key and ssl.crt files it would work. I also changed the server name. Is there something I am missing? You can only have one SSL site per

Re: [EMAIL PROTECTED] More than one SSL Certificate/Virtual Host

2008-04-17 Thread Thomas Antony
Is there something I am missing? Yes. You must use IP based virtual hosts. It is only possible to have one cert on one ip on one port. You can add another ip or configure each virtual host on a different port (443, 444,...) on one ip. You can also configure one cert for all virtual

Re: [EMAIL PROTECTED] Authenticating Proxy Server

2008-04-17 Thread Nick Kew
On Thu, 17 Apr 2008 15:28:19 +0100 Roy Pearce [EMAIL PROTECTED] wrote: Sounds to me like a browser misconfiguration. All I changed was the port number to point to a secure authenticating proxy server. It appears that FF assumes the proxy server is talking HTTP when I would like it

Re: [EMAIL PROTECTED] More than one SSL Certificate/Virtual Host

2008-04-17 Thread Scott Courtney
On Thursday 17 April 2008 11:05:11 Ray Van Dolson wrote: You can only have one SSL site per IP address. However, you can work around this by using a wildcard SSL certificate if all the vhosts are in the same second-level domain, e.g., foo.example.com, bar.example.com, and www.example.com can all

Re: [EMAIL PROTECTED] Tons of Segfaults in Apache-Prefork 2.2.4

2008-04-17 Thread Nick Kew
On Thu, 17 Apr 2008 12:13:04 +0200 Markus Meyer [EMAIL PROTECTED] wrote: Hi all, we experience a lot of threads segfaulting with our Apaches. There are about 300 dying threads per day. The error in syslog is the following: Apr 16 23:51:41 foo-bar kernel: httpd[24629]: segfault at

[EMAIL PROTECTED] mod_expires in Apache 2.0.54

2008-04-17 Thread Karthick P
Hello everyone, We have been using Apache 2.0.54 on SLES as our hosting standard for all our applications. We have enabled the mod_expires in apache to set the expiration settings for the static content like JPEG, GIF, JS, etc. There is a requirement that the expiration settings should be set

Re: [EMAIL PROTECTED] Tons of Segfaults in Apache-Prefork 2.2.4

2008-04-17 Thread Markus Meyer
Nick Kew schrieb: On Thu, 17 Apr 2008 12:13:04 +0200 Hmmm? Your subject line says prefork. With prefork, there are no threads. Anyway, no matter. Stupid me. This happens when having developers crying in your ear all the time ;) You should get cores from a segfault. Have you enabled

Re: [EMAIL PROTECTED] mod_expires in Apache 2.0.54

2008-04-17 Thread Joshua Slive
On Thu, Apr 17, 2008 at 12:14 PM, Karthick P [EMAIL PROTECTED] wrote: Hello everyone, We have been using Apache 2.0.54 on SLES as our hosting standard for all our applications. We have enabled the mod_expires in apache to set the expiration settings for the static content like JPEG,

[EMAIL PROTECTED] Options Indexes

2008-04-17 Thread James Wuerflein
I have the following in httpd.conf : DocumentRoot /Apache/Apache/htdocs Directory / Options FollowSymLinks MultiViews AllowOverride None /Directory Directory /landing Options FollowSymLinks MultiViews /Directory Directory /images Options Indexes FollowSymLinks MultiViews

Re: [EMAIL PROTECTED] Tons of Segfaults in Apache-Prefork 2.2.4

2008-04-17 Thread Joshua Slive
On Thu, Apr 17, 2008 at 12:16 PM, Markus Meyer [EMAIL PROTECTED] wrote: I enabled CoreDumpDirectory in httpd.conf, made a ulimit -c unlimited and started Apache. When I had a segfault there was no corefile in the specified directory and Apache was still running. Only the forked process was

Re: [EMAIL PROTECTED] Options Indexes

2008-04-17 Thread Joshua Slive
On Thu, Apr 17, 2008 at 12:42 PM, James Wuerflein [EMAIL PROTECTED] wrote: I have the following in httpd.conf : DocumentRoot /Apache/Apache/htdocs Directory /landing Options FollowSymLinks MultiViews /Directory Directory refers to file-system directories. You probably want Directory

Re: [EMAIL PROTECTED] mod_mem_cache caches incomplete content

2008-04-17 Thread Joshua Slive
On Thu, Apr 17, 2008 at 6:41 AM, Frederic Paillart [EMAIL PROTECTED] wrote: Hi all, I'm using mod_mem_cache to cache iso files provided by tomcat backend server (using mod_http_proxy). During the first client download, the iso file is stored into this cache. If this client stops

[EMAIL PROTECTED] Redirecting http to https using mod_proxy

2008-04-17 Thread Gareth . Segree
I want to redirect users whenever they type http://webmail.example.com they are redirected to localmail.example.com The local server is local server is localserver.gleanerjm.com the apache2.conf is as follows: VirtualHost * ServerName webmail.example.com ProxyPass /

Re: [EMAIL PROTECTED] Redirecting http to https using mod_proxy

2008-04-17 Thread Joshua Slive
On Thu, Apr 17, 2008 at 12:59 PM, [EMAIL PROTECTED] wrote: I want to redirect users whenever they type http://webmail.example.com they are redirected to localmail.example.com The local server is local server is localserver.gleanerjm.com the apache2.conf is as follows: VirtualHost *

[EMAIL PROTECTED] mod_proxy limit session

2008-04-17 Thread Arsène Gschwind
Hi there, I try to figure out if there is a way to limit the amount of active sessions when using mod_proxy with sticky bit. I've found the max and smax param which allows to limit the connections, but it does not limit the amount of concurrent sessions. Thanks for any help or hint Regards,

Re: [EMAIL PROTECTED] Authenticating Proxy Server

2008-04-17 Thread Emmanuel E
No FF will not communicate to a proxy using SSL. It will communicate using SSL to any webserver via proxy or directly, but not to a proxy using SSL. Its not forbidden, but its not explicitly defined anywhere. Similar to bug http://issues.apache.org/bugzilla/show_bug.cgi?id=29744 Till Necko

[EMAIL PROTECTED] problem building apache on solaris-10

2008-04-17 Thread Malay HALDER
|*hello maintainers, I am trying to build apache-2.2.8 on a solaris 10 machine and facing the following linking error in the build stage. make[2]: Entering directory `/users/mhalder/Documents/httpd-2.2.8/support' /users/mhalder/Documents/httpd-2.2.8/srclib/apr/libtool