Linux

如何列出啟用 Apache 的模組?

  • July 26, 2021

是否有列出所有啟用的 Apache 模組的命令?

要列出 apache 載入的模組,請使用:

apachectl -M

或者:

apachectl -t -D DUMP_MODULES 

或在 RHEL、CentoS、Fedora 上:

httpd -M

更多選擇man apachectl。所有這些答案都可以通過小小的Google搜尋找到。

您也可以使用server- info 從遠端伺服器獲取資訊

<Location /server-info>
  SetHandler server-info
  Order allow,deny
  Allow from 127.0.0.1 xxx.xxx.xxx.xxx
</Location>

您可以在http://your.host.example.com/server-info?list獲取所有啟用的 Apache 模組的列表

引用自:https://serverfault.com/questions/475173