PDA

View Full Version : [ubuntu] Apache2 LTS 8.04 LoadModule Section.


nitecon
October 3rd, 2008, 06:45 PM
Hey folks, this might be a really dumb question....

I'm doing virtual hosts with ProxyPass / ProxyPassReverse, that is all fine and dandy, the only problem is I can't find the LoadModule section in any of the conf files contained in /etc/apache2/

I assume doing a sudo apt-get install libapache2-mod-proxy-html is enough since I can't grep for anything else but that module.

Where to add the LoadModule though?

Thanks in advance :)

Nite.

windependence
October 4th, 2008, 10:27 AM
Enable the module:

a2enmod proxy

Then, restart Apache:

/etc/init.d/apache2 restart


-Tim