[users@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
, ... How can I re-use this variable in another SetEnv Directive ? Thanks Apache 2.2.3, Linux kernel 2.6.18, x86_64 -- Sébastien Moretti Department of Ecology and Evolution, Biophore, University of Lausanne, CH-1015 Lausanne, Switzerland

Re: [users@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
.9.2342.19200300.100.1.1") "(.*)" A_SETENVIF_OIDTEST=3D$1 Result: A_SETENVIF_ENV_REMOTE_PORT="" A_SETENVIF_ENV_REMOTE_PORT_PERCENT="" A_SETENVIF_LA_F_REMOTE_PORT="" A_SETENVIF_LA_F_REMOTE_PORT_PERCENT="" A_SETENVIF_LA_U_REMOTE_PORT=&quo

Re: [us...@httpd] Re-use of a Setenv directive

2010-10-20 Thread Sébastien Moretti
/smthg export BASE_PATH Use variable inside Apache config: SetEnv PATHS ${BASE_PATH}/a:${BASE_PATH}/b:${BASE_PATH}/c:... or etc. Regards, Rainer -- Sébastien Moretti Department of Ecology and Evolution, Biophore, University of Lausanne, CH-1015 Lausanne, Switzerland

[us...@httpd] RewriteRule & jsessionid

2010-11-17 Thread Sébastien Moretti
idea ? -- Sébastien Moretti - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org " fr

Re: [us...@httpd] RewriteRule & jsessionid

2010-11-17 Thread Sébastien Moretti
Maybe I do something wrong. The rule could certainly be more properly written. But on our development server, I don't get the problem (but apache versions and configurations are a bit different). Any idea ? -- Séba

[users@httpd] FilesMatch does nothing

2011-05-09 Thread Sébastien Moretti
mod_rewrite and/or mod_alias ? Thanks I run apache 2.2 -- Sébastien Moretti - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscr

Re: [users@httpd] FilesMatch does nothing

2011-05-09 Thread Sébastien Moretti
ry or Files containers because they're not mapped to any Directory or file. Pieces of the URL aren't files. Use Location/LocationMatch. I should use LocationMatch everywhere, it will be less ambiguous for my mind. Thanks Eric -- Sé

Re: [users@httpd] FilesMatch does nothing

2011-05-09 Thread Sébastien Moretti
ht accidentally expose a resource on a 2nd URL (or via some 'equivalent URL?') and have access control mis-applied. I mainly take care of access control issues at the OS level and use FileMatch or LocationMatch for HTTP header issues. But I have definitely to take care of that. Thanks ag