1
edit
Changes
→Milton Paiva Neto
*Write the steps to install mod_python and mod_perl on Apache.
Installation
#cd /usr/ports/www/mod_perl2/
#make
#make install
Integrating the module with apache22
Edit the file:
#vi /usr/local/etc/apache22/httpd.conf
And add the line below, after the modules section in the Apache configuration file.
LoadModule perl_module libexec/apache22/mod_perl.so
Verify the installation process
To verify if the module was installed properly, type:
#/usr/local/sbin/httpd -M
And look for the line
perl_module (shared)
= Mohak Vyas =