Is there any way to use the string matched by a wildcard in an Apache <Directory /> directive further on in the configuration? Ideally, I'd like to do something like this:

<Directory /home/*/public_html>
    ...
    RUidGid $1 $1
    php_admin_value open_basedir /home/$1/
</Directory>

…where $1 is whatever was matched by the *.

link|improve this question
feedback

1 Answer

It is impossible. Maybe right for you mod_macro or "Dynamically configured mass virtual hosting"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.