up vote 0 down vote favorite
share [g+] share [fb]

in /etc/apache2/sysconfig.d/loadmodule.conf, we have "Files in this directory are created at apache start time by /usr/sbin/rcapache2"

So how can I tell apache to load a new module (instead of editing the loadmodule.conf) ?

Thanks

link|improve this question
feedback

1 Answer

You can use the LoadModule directive in your httpd.conf from mod_so (on Windows it will load DLLs).

example:

LoadModule status_module modules/mod_status.so

You'll need DSO support if you want to avoid recompiling.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.