在Ubuntu上配置apache Web服务器,默认情况下执行所有目录的目录列表

时间:2017-07-26 21:46:18

标签: apache ubuntu configuration webserver

如何在Ubuntu上配置apache web服务器默认执行所有目录的目录列表?

我添加了这个条目

<Directory /var/lib/jenkins>
        Options +Indexes
</Directory>

在我的

/etc/apache2/apache2.conf

但是上市仍然无效。如何启用mod_autoindex模块?

1 个答案:

答案 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