You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Christopher Nagel <ch...@yahoo.com> on 2008/06/23 21:57:28 UTC

[users@httpd] Backtracking inside ?

Hi,

I'm setting up Django in Apache and thought it would be cool to do something like this:

<LocationMatch "(/.*/).*\.py">
   SetEnv DJANGO_SETTINGS_MODULE $1settings.py
</LocationMatch>

Unfortunately, it's looking for $1 as a literal, not as a reference to the first regex element.

Am I going too far, or am I just using the wrong syntax?

Thanks!
Chris


      

---------------------------------------------------------------------
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 unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] Backtracking inside ?

Posted by André Warnier <aw...@ice-sa.com>.

Christopher Nagel wrote:
> Hi,
> 
> I'm setting up Django in Apache and thought it would be cool to do something like this:
> 
> <LocationMatch "(/.*/).*\.py">
>    SetEnv DJANGO_SETTINGS_MODULE $1settings.py
> </LocationMatch>
> 
> Unfortunately, it's looking for $1 as a literal, not as a reference to the first regex element.
> 
> Am I going too far, or am I just using the wrong syntax?
> 
I think you're going too far ;-)
I don't think that the LocationMatch "memorises" the match to pass it to 
another directive.

But you should have a look at mod_setenvif.
http://httpd.apache.org/docs/2.2/en/mod/mod_setenvif.html

André

---------------------------------------------------------------------
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 unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org