Re: [users@httpd] Weird locking issue with mod_dav

2012-09-17 Thread Werner Schalk
To follow up on my own email, I seem to have hit a known bug: https://issues.apache.org/bugzilla/show_bug.cgi?id=42977 Thanks anyway. Kind regards, Werner Original-Nachricht > Datum: Sat, 15 Sep 2012 19:25:32 +0200 > Von: "Werner Schalk" > An: use

Re: [users@httpd] Weird locking issue with mod_dav

2012-09-15 Thread Werner Schalk
httpd] Weird locking issue with mod_dav > On Sat, Sep 15, 2012 at 11:33 PM, Werner Schalk > wrote: > > > Hello, > > > > I am trying to configure webdav for a folder and I am consistently > hitting > > a problem: Whenever files are copied to the webdav share, the

[users@httpd] Weird locking issue with mod_dav

2012-09-15 Thread Werner Schalk
Hello, I am trying to configure webdav for a folder and I am consistently hitting a problem: Whenever files are copied to the webdav share, the operation aborts and the error log of Apache contains the following entries: [Sat Sep 15 14:16:27 2012] [error] [client 81.210.X.Y] (2)No such file or

Re: [EMAIL PROTECTED] Apache 2.2.6, problem with mod_proxy: "ProxyPass|ProxyPassMatch can not have a path when defined in a location."

2007-11-30 Thread Werner Schalk
e a path when defined in a location." On Thu, Nov 29, 2007 at 05:12:12PM +0100, Werner Schalk wrote: Hi, I am running the latest version of XAMMP provided by Apachefriends.org. The software includes Apache 2.2.6 and I am trying to configure a reverse proxy. The modules are loaded but t

[EMAIL PROTECTED] Apache 2.2.6, problem with mod_proxy: "ProxyPass|ProxyPassMatch can not have a path when defined in a location."

2007-11-29 Thread Werner Schalk
Hi, I am running the latest version of XAMMP provided by Apachefriends.org. The software includes Apache 2.2.6 and I am trying to configure a reverse proxy. The modules are loaded but the following lines makes Apache unhappy and complain about my configuration: ProxyPass /a/ http://localhost

[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 Singl

Re: [users@httpd] mod_rewrite: Overwriting REMOTE_ADDR with HTTP_X_FORWARDED_FOR (follow-up)

2005-06-24 Thread Werner Schalk
Hi, just a quick follow-up: Thanks to Thomas Eibner, it got it working: > I believe this module does it already: > http://stderr.net/apache/rpaf/ Yeah! All the best and thanks again, Werner. - The official User-To-User suppor

Re: [users@httpd] mod_rewrite: Overwriting REMOTE_ADDR with HTTP_X_FORWARDED_FOR

2005-06-24 Thread Werner Schalk
Hi, well of course I could use HTTP_X_FORWARDED_FOR instead of REMOTE_ADDR in all my scripts but the problem is that I have some customers and their scripts are relying on REMOTE_ADDR so I don't want to ask them to change their scripts... Thanks. Bye, Werner -

Re: [users@httpd] mod_rewrite: Overwriting REMOTE_ADDR with HTTP_X_FORWARDED_FOR

2005-06-24 Thread Werner Schalk
Hi Joshua, thanks for your help. In your last email you agreed upon the suggestions David Adams had (e.g. using sed a an output filter). I have tried this and it does not work. Thanks anyway. All the best & bye, Werner. - The

Re: [users@httpd] mod_rewrite: Overwriting REMOTE_ADDR with HTTP_X_FORWARDED_FOR

2005-06-24 Thread Werner Schalk
Hi, well apologies for bringing this issue up again but none of the suggested solutions actually does work. I tried the following output filter: ExtFilterDefine proxy_hack mode=output intype=text/html outtype=text/html cmd="/bin/sed 's/HTTP_X_FORWARDED_FOR/REMOTE_ADDR/g'" Enabling this output

[users@httpd] mod_rewrite: Overwriting REMOTE_ADDR with HTTP_X_FORWARDED_FOR

2005-06-24 Thread Werner Schalk
Hi, I would like to use mod_rewrite to overwrite the environment variable REMOTE_ADDR with the value of HTTP_X_FORWARDED_FOR because I am using Apache 2 in a reverse / forward proxy scenario where the original IP address of the client is not passed on to the internal Apache server: Inet -> Ser

Re: [users@httpd] mod_proxy / mod_rewrite: Passing remote IP address to internal server

2005-06-15 Thread Werner Schalk
Hi, > Have you tried looking at the X-Forwarded-For header? (Appears in CGI > scripts as HTTP_X_FORWARDED_FOR) This is passed automatically by > mod_proxy, as far as I know. yes I know this but all the scripts of my customers are looking for REMOTE_ADDR etc. So how can I forward this to my inter

[users@httpd] mod_proxy / mod_rewrite: Passing remote IP address to internal server

2005-06-14 Thread Werner Schalk
Hi, I do use mod_proxy as a reverse / forward proxy as follows: Inet -> Server (public IP, Apache 2) -> Internal Server (same system, virtual server using Linux vserver - private IP address, Apache 2) Now all the requests that are send to the public IP address are forwarded to the internal ser