RE: [us...@httpd] symbolic link to public_html folders

2010-09-29 Thread Manoj Samtani
Hi Jason, What error you are getting in error_logs?? Did you enabled following: +FollowSymlinksUserDir disabled UserDir enabled user1 user2 user3 ??? Regards,Manoj Samtani From: jgb...@gmail.com Date: Thu, 23 Sep 2010 09:22:17 -0700 To: rainer.j...@kippdata.de CC: users@httpd.apache.org Subject

Re: [us...@httpd] "proxy_balancer" | stickysession

2010-09-29 Thread Thomas
Hi Holger, On 09/29/2010 04:53 PM, King Holger (CI/AFP2) wrote: > In production environment, we discover connection switches from > "rb-wcmstc1" to "rb-wcmstc2" and vice versa (documented in the > Tomcat-Logs) for the same Session-ID: [...] > Although, the "stickysession" attribute is set properly

Re: [us...@httpd] Re: ${path} variable

2010-09-29 Thread [triplepack] info (i...@pack3.ch)
thats probably meant by path on windows C:\Users\myuser>path PATH=C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Windows\system32; C:\Windows;C:\Windows\System32\Wbem;C:\Program Files (x86)\QuickTime\QTSystem\ Am 25.09.2010 20:46, schrieb MikeB: Eric Covener wrote: On Sat, Sep 2

Re: [us...@httpd] LDAP authentication with password encryption from browser to web server

2010-09-29 Thread Mark Tischler
Thanks. I found the provided links very helpful. I decided to file an enhancement request in ASF Bugzilla, given that this has been complained about for at least 3 years. Also, thanks to Igor for suggesting Kerberos. I will look into that. Mark On 9/28/2010 6:09 PM, [triplepack] info (i

[us...@httpd] "proxy_balancer" | stickysession

2010-09-29 Thread King Holger (CI/AFP2)
Dear mailing list, currently, we use the Apache2 version: - Apache2 2.2.16 64bit - standard "mod_proxy_balancer" module with the following V-HOST configuration including a proxy balancer directive (with two Apache Tomcat instances behind): BalancerMember ajp://rb-wcmstc1.xx.x.xxx:8009 l

[us...@httpd] Re: RewriteRule E=SMUSER:%{LA-U:REMOTE_USER} works but not E=SMUSER:%{LA-U:SSL_CLIENT_S_DN_EMAIL}

2010-09-29 Thread David (Dave) Donnan
My bad, it works as follows (worth noting for the archives). RewriteRule .* - [E=SMUSER:%{SSL:SSL_CLIENT_S_DN_Email}] Cdlt, Dave -- David (Dave) Donnan wrote: Hello again. I hope I've not overstayed my welcome. RewriteRule .* - [E=SMUSER:%{LA-U:REMOTE_USER}] works for both 80 an

[us...@httpd] RewriteRule E=SMUSER:%{LA-U:REMOTE_USER} works but not E=SMUSER:%{LA-U:SSL_CLIENT_S_DN_EMAIL}

2010-09-29 Thread David (Dave) Donnan
Hello again. I hope I've not overstayed my welcome. RewriteRule .* - [E=SMUSER:%{LA-U:REMOTE_USER}] works for both 80 and 443 (SSL) However, the following doesn't work for either (I understand why it doesn't work for port 80 :-) RewriteRule .* - [E=SMUSER:%{LA-U:SSL_CLIENT_S_DN_EMAIL

Re: [us...@httpd] Setting CGI environment variables, dynamically, from httpd.conf leveraging exising variables

2010-09-29 Thread David (Dave) Donnan
Hello everybody. Eric, thanks for the rapide response. I took the $PATH of least resistance, corrected Technique #1, and now it WORKS ! httpd.conf: RewriteEngine on RewriteRule .* - [E=SMUSER:%{LA-U:REMOTE_USER}] Result (setenv.pl): ... SMUSER="" ... Thanks again, Dave PS: I h