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
|
feedback
|
|
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. | ||||
|
feedback
|