You are viewing a plain text version of this content. The canonical link for it is here.
Posted to modperl@perl.apache.org by Jeff Ambrosino <jb...@gmail.com> on 2006/09/13 20:24:06 UTC

inserting handler/filter in main server vs. virtual host configuration?

For httpd.conf in Apache 2.x / mp2, does it matter if I insert a
handler in the main server section vs. a virtual host section?  My
question pertains specifically to performance/memory, as I already
understand the logical implications.

PerlChildInitHandler +MyStuff::InitHandler

vs.

<VirtualHost>
     PerlChildInitHandler +MyStuff::InitHandler
</VirtualHost>

thanks
JB

Re: inserting handler/filter in main server vs. virtual host configuration?

Posted by Perrin Harkins <pe...@elem.com>.
On Wed, 2006-09-13 at 14:24 -0400, Jeff Ambrosino wrote:
> For httpd.conf in Apache 2.x / mp2, does it matter if I insert a
> handler in the main server section vs. a virtual host section?  My
> question pertains specifically to performance/memory, as I already
> understand the logical implications.

No, it doesn't matter.

- Perrin