How to List All Loaded Apache Modules
This short guide will show you how to list all loaded modules in Apache. This guide assumes that apache (httpd) is installed and running.
This short guide will show you how to list all loaded modules in Apache. This guide assumes that apache (httpd) is installed and running.
In Terminal, or your Unix command line, use the following command:
httpd -M
You should see output similar to this:
core_module (static)
mpm_prefork_module (static)
http_module (static)
so_module (static)
auth_basic_module (shared)
auth_digest_module (shared)
This is a list of all loaded Apache modules.
This guide shows you how to set up a Django application and development environment using Docker. Note: The previous version of this guide was written before Docker for Mac was available.