The module are available in the /etc/apache2/mods-available directory. You can use the a2enmod command to enable a module. You can use the a2dismod command to disable a module. Once you enable the module, the module will be available in the the /etc/apache2/mods-enabled directory.
Example:
To enable ssl module, use following command:
sudo a2enmod sslTo enable suexec module, use following command:
sudo a2enmod suexecWhen you’re finished enabling the modules that you want, you’ll need to perform a “force-reload” of Apache using following command: sudo service apache2 restart
Note: Above commands (a2enmod and a2dismod) will work with any Linux distribution and not only limited to Ubuntu.
source:http://linuxpoison.blogspot.com/2010/07/135781677513931.html