On Sat, Jul 7, 2012 at 9:12 AM, Daniel Ruggeri <drugg...@primary.net> wrote:
> On 7/6/2012 2:44 PM, Andrew wrote:
>> I have written an Apache Module that performs an internal redirect
>> (ap_internal_redirect) based on certain conditions. Then mod_proxy
>> handles proxying the request to a backend server. I'm using the
>> ap_hook_post_read_request hook with APR_HOOK_MIDDLE. I would like to
>> restrict this handler to a single virtual host but currently it is
>> invoked on all virtual host requests (there are many). The httpd.conf
>> configuration is limited to theLoadModule directive. I've tried using
>> SetHandler handlername in the vhost and SetHandler None in the main
>> config but the handler is still invoked on requests to other vhosts.

If you care about the handler, you have to check it yourself in your
module and return DECLINED if it's not tagged for you.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@httpd.apache.org
For additional commands, e-mail: users-h...@httpd.apache.org

Reply via email to