Re: Overriding a built-in Apache configuration directive using mod_perl

2012-01-14 Thread Matisse Enzer
Whoops - this corrects a typo in my example code: # Example of overriding 'Require' in a mod_perl Apache module # my @directives = ( { name => 'Require', func => __PACKAGE__ . '::Require', req_override => Apache2::Const::OR_ALL, args_how

Overriding a built-in Apache configuration directive using mod_perl

2012-01-14 Thread Matisse Enzer
Is it practical to override a built-in Apache config directive such as 'Require' in a mod_perl Apache module? I have examined the documentation at: http://perl.apache.org/docs/2.0/user/config/custom.html#Creating_and_Using_Custom_Configuration_Directives and it seems like it might work, but I'd