Re: Problem mit httpd2 + tomcat5.5.9 + mod_rewrite

2005-11-08 Thread Robert Ionescu
[EMAIL PROTECTED] wrote: Hallo, ich verwende httpd2 und tomcat 5.5.9 zusammen. Jetzt möchte ich die Adresse maskieren die vom tomcat gesendet werden. Dazu möchte ich mod_rewrite einsetzen. Dazu habe ich im Konfig-File folgendes eingegeben: directory LoadModule rewrite_module

RE: [EMAIL PROTECTED] repeated authentication requests

2005-11-08 Thread Barham, David
Apache is running on the RHEL4 linux box. I'm using mod_auth_pam to authenticate the users against a windows AD. (i.e. apache prompts for username/password which is then past to PAM to authenticate via pam_smb. At the moment I've only got one realm, so the relevant bits of httpd.conf read:-

Re: [EMAIL PROTECTED] Limiting SSL to a specific virtual host

2005-11-08 Thread Olaf van der Spek
On 11/8/05, Boyle Owen [EMAIL PROTECTED] wrote: The point about Apache 2.1 is that it includes a new module (as mentioned by Nick) which supports a new extension to TLS. This allows for Server Name Indication where the client tells the server what hostname it wants to connect to. Basically,

[EMAIL PROTECTED] Weird 404 error

2005-11-08 Thread Tawfiq Choudhury RAFM DMD
Hi, I have installed a blogging tool, wordpress(http://wordpress.org), in my laptop(Win XP). It is running on Apache 2.0.xx, MySQL 4.0.xx and PHP 5.05. I can post and view articles without any problem from my local machine. But whenever I try to post or view articles from another

Re: [EMAIL PROTECTED] Limiting SSL to a specific virtual host

2005-11-08 Thread Issac Goldstand
Boyle Owen wrote: BTW, I didn't write the line below so don't attribute it to me... mod_ssl Added a support for RFC 2817, which allows connections to upgrade from clear text to TLS encryption. No, that would be from the Apache 2.1 Changelog. I was also pessimistic when I saw the

RE: [EMAIL PROTECTED] Weird 404 error

2005-11-08 Thread Boyle Owen
Plain text please... Are you sure you are accessing the pages via apache and that the internal links and images are referenced using HTTP? It sounds like you might be referencing images etc. via the filesystem, eg: src=file:/home/web/images/pic.gif -- bad src=/images/pic.gif -- good If not,

RE: [EMAIL PROTECTED] repeated authentication requests

2005-11-08 Thread Boyle Owen
-Original Message- From: Barham, David [mailto:[EMAIL PROTECTED] Alias /tmp/barhamd /tmp/barhamd/ What is the point of this directive? Is /tmp/barhamd/ the full path to a directory? My /var/log/httpd/access_log shows 134.244.154.125 - barhamd [08/Nov/2005:09:36:33 +] GET

RE: [EMAIL PROTECTED] repeated authentication requests

2005-11-08 Thread Barham, David
Usual document root is /var/www/html. I wanted to do the testing somewhere else and /tmp/{my user} seemed like a good idea. Usually on for the first time I go to the secure pages after starting a browser I get a 401 on the first page. Then, when I authenticate I typically get a number of

RE: [EMAIL PROTECTED] repeated authentication requests

2005-11-08 Thread Boyle Owen
Just an idea - use normal authentication (use AuthUserFile - see docs for details) and see if it works. That will eliminate an apache config problem and clearly identify PAM as the culprit... Rgds, Owen Boyle Disclaimer: Any disclaimer attached to this message may be ignored. -Original

RE: [EMAIL PROTECTED] repeated authentication requests

2005-11-08 Thread Barham, David
Yes, it does seem to look that way. I posted on the mod_auth_pam list to see if anyone there had any ideas. Thanks David -Original Message- From: Boyle Owen [mailto:[EMAIL PROTECTED] Sent: 08 November 2005 11:57 To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] repeated

[EMAIL PROTECTED] httpd2 + tomcat5.5.9 problem with mod_rewrite

2005-11-08 Thread Peter . Neu
Hello, I' using mod_jk to connect tomcat to httpd2. This works perfectly. Now I try to manipulate the URL's which I map to httpd from tomcat. But the rules seem not to affect the response I get. Does this not work or am I doing something wrong. I my httpd config I have this entry: directory

Re: [EMAIL PROTECTED] Restricting request methods

2005-11-08 Thread Joshua Slive
On 11/8/05, Eruch Kapadia [EMAIL PROTECTED] wrote: Folks, I am trying to restrict certain request methods that the apache server can accept. For example i would like to disable TRACE, and DELETE methods. Please advise how this can be done. To start with, you are most likely wasting your

Re: [EMAIL PROTECTED] Animated GIF problem

2005-11-08 Thread Joshua Slive
On 11/8/05, Elliot Robinson [EMAIL PROTECTED] wrote: Well, now we know the source of the problem. I disabled SELinux, and the GIFs appeared without a flaw. So, I re-enabled it, and allowed everything possible through the GUI configuration utility. Unfortunately, it still doesn't work. I

Re: [EMAIL PROTECTED] httpd2 + tomcat5.5.9 problem with mod_rewrite

2005-11-08 Thread Joshua Slive
On 11/8/05, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello, I' using mod_jk to connect tomcat to httpd2. This works perfectly. Now I try to manipulate the URL's which I map to httpd from tomcat. But the rules seem not to affect the response I get. Does this not work or am I doing something

Re: [EMAIL PROTECTED] Reverse Proxy and SSI from Back-End Apache

2005-11-08 Thread Joshua Slive
On 11/8/05, Devendra Singh [EMAIL PROTECTED] wrote: But, the problem is that when I try to access http://ds.india.noida/dstest.html the SSI /mycomps/testsuccess.html also gets parsed from the Front Apache. Or, in other words, subrequests are not getting proxied. RewriteEngine On

Re: [EMAIL PROTECTED] Animated GIF problem

2005-11-08 Thread Elliot Robinson
Thanks Josua. I'm sure I can figure it out from here. Thanks all! Elliot Robinson - The official User-To-User support forum of the Apache HTTP Server Project. See URL:http://httpd.apache.org/userslist.html for more info. To

Re: [EMAIL PROTECTED] Reverse Proxy and SSI from Back-End Apache

2005-11-08 Thread Devendra Singh
On 11/9/05, Joshua Slive [EMAIL PROTECTED] wrote: On 11/8/05, Devendra Singh [EMAIL PROTECTED] wrote: But, the problem is that when I try to access http://ds.india.noida/dstest.html the SSI /mycomps/testsuccess.html also gets parsed from the Front Apache.Or, in other words, subrequests are not

[EMAIL PROTECTED] DSO: does the order of LoadModule matter?

2005-11-08 Thread Qingshan Xie
All, We have a Apache-2.0.52 running on a Linux host. We use mod_so to load modules appended below. However I am not very sure if those modules loaded in the right order or the order matters? Please advise. Thx, Q.Xie LoadModule

Re: [EMAIL PROTECTED] DSO: does the order of LoadModule matter?

2005-11-08 Thread James Benson
Yes I think I remember seeing something about that in the apache docs, the order it ships with should not be changed! Qingshan Xie wrote: All, We have a Apache-2.0.52 running on a Linux host. We use mod_so to load modules appended below. However I am not very sure if those modules

[EMAIL PROTECTED] HTTPS: what is the relation of ssl-handshake and keepalive?

2005-11-08 Thread Qingshan Xie
All, I am not clear the relation between KeepAlive and SSL-HandShake. I think if KeepAlive is turned off, the SSL-HandShake will be processed in every request. However, if KeepAlive is turned on, the following requests after the 1st SSL-HandShake during the period of KeepAlive won't need

[EMAIL PROTECTED] Question about mod_cache

2005-11-08 Thread Matthew R. Hamilton
I am looking to set up some caching apache servers to offload commonly accessed static content. We had been using IBM's WebSphere Edge Components 5.0.2 until we started experiancing issues where the ibmproxy process would constantly crash, but not in any sort of predictable manner. We currently

[EMAIL PROTECTED] Question about mod_cache

2005-11-08 Thread Matthew R. Hamilton
I am looking to set up some caching apache servers to offload commonly accessed static content. We had been using IBM's WebSphere Edge Components 5.0.2 until we started experiancing issues where the ibmproxy process would constantly crash, but not in any sort of predictable manner. We currently