Question
How do I enable or verify a module for Apache is enabled on my server?
Answer
cPanel provides a default set of modules for Apache when the Standard Server node profile is enabled. You can verify if a module is installed through the command-line interface using "httpd -M". For example, if we want to check if mod_rewrite is enabled, you can grep for it while loading the list of modules.
# httpd -M |grep rewrite
rewrite_module (shared)
If you need to add additional modules, this can be done through yum or through the interface via the WHM. WHM >> Home >> Software >>EasyApache.
We also have the following documentation article if you're looking for a module that is not currently available through EasyApache. What should I do if I need an Apache module, PHP module, or PHP versions that is not available in EasyApache 4?
Comments
0 comments
Article is closed for comments.