Add a new module in Apache in ISP config .. Debian

Discussion in 'HOWTO-Related Questions' started by jbmd, Jul 21, 2015.

  1. jbmd

    jbmd Member

    Hello,
    is this a correct procedure how to install a new module to Apache ISPconfig3 3.0.5.4p8:

    1) add modul to
    /usr/lib/apache2/modules/module name

    2) add text file with a name: somename.load to
    /etc/apache2/mods_available/
    so the result is:
    /etc/apache2/mods_available/somename.load
    Inside of this text file:
    LoadModule ... etc.

    3) In /etc/apache2/mods_enabled/ create symbolic link to /etc/apache2/mods_available/somename.load
    like this:
    ln -s ../mods_available/somename.load somename.load

    4) Restart Apache
    service apache restart
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    Yes, that's correct, the procedure is not specific to ISPConfig. But as step 3 you can just run:

    a2enmod modulename
     

Share This Page