Hack 80. httpd.conf 内で受け入れたディレクティブすべてを表示する

httpd のヘルプを拡張したようなものです。
httpd.conf のディレクティブすべてとディレクティブが有効な場所を表示します。
特定のディレクティブについては、有効な値すべてを表示し、
httpd.conf 内のその場所で使用することができます。
これは特定の Apache ディレクティブについてすぐに知りたいときに特に有用です。

# httpd -L

HostnameLookups (core.c)
“on” to enable, “off” to disable reverse DNS lookups, or “double” to enable double-reverse DNS lookups
Allowed in *.conf anywhere

ServerLimit (prefork.c)
Maximum value of MaxClients for this run of Apache
Allowed in *.conf only outside <Directory>, <Files> or <Location>

KeepAlive (http_core.c)
Whether persistent connections should be On or Off
Allowed in *.conf only outside <Directory>, <Files> or <Location>

LoadModule (mod_so.c)
a module name and the name of a shared object file to load it from
Allowed in *.conf only outside <Directory>, <Files> or <Location>