如何在Ubuntu上配置apache web服务器默认执行所有目录的目录列表?
我添加了这个条目
<Directory /var/lib/jenkins>
Options +Indexes
</Directory>
在我的
中/etc/apache2/apache2.conf
但是上市仍然无效。如何启用mod_autoindex
模块?
答案 0 :(得分:0)
如果您为加载模块创建了特定文件,则可以将以下行添加到该文件中:
LoadModule autoindex_module modules/mod_autoindex.so
您可以通过查看httpd.conf来查看是否有其他配置文件,或者我想在您的情况下使用apache2.conf来说明一行:
Include /insert/path/to/modules/config/file
如果apache2.conf是加载模块的地方,只需添加我在答案中输入的第一个代码块行。
您可以通过https://httpd.apache.org/docs/2.4/mod/mod_autoindex.html
了解mod_autoindex后,查看文档以了解您可以执行的自定义操作如果你想对你的索引感到“喜欢”,请查看FancyIndexing选项 - https://httpd.apache.org/docs/2.4/mod/mod_autoindex.html#indexoptions.fancyindexing