in reply to Re: Apache Perl CGI and VirtualHosts
in thread Apache Perl CGI and VirtualHosts

Hi,

My apache is built using MPM Worker and I'm loading mod_cigd apparently.

LoadModule cgid_module modules/mod_cgid.so

Do you think this is related? Do you recommed to switch over mod_cgi and test again?

--The Dev Ops Guy

Replies are listed 'Best First'.
Re^3: Apache Perl CGI and VirtualHosts
by hippo (Archbishop) on Mar 10, 2015 at 16:38 UTC

    In that case what you are seeing is the expected behaviour. You could switch to a non-threaded MPM (ie. prefork) and use mod_cgi instead but then of course you would lose all the benefits of the threaded MPM. It is entirely your choice as the web server admin which way you choose to go with that.

    Either way, it's not a perl-specific issue.