1

我不知道如何在 puphpet 中为 apache 虚拟主机启用目录索引。我有config.yaml如下定义的 localhost 。索引似乎不起作用。

vhosts:
    Ow3JtQyukTBm:
        servername: localhost
        serveraliases:
            - localhost
        docroot: /var/www/
        port: '80'
        override:
            - All
        options:
            - Indexes
            - FollowSymLinks
            - MultiViews
        engine: php
        custom_fragment: ''
        ssl_cert: ''
        ssl_key: ''
        ssl_chain: ''
        ssl_certs_dir: ''
4

1 回答 1

0

只需使用正确的路径添加到您的虚拟主机配置“directoryindex”。

directoryindex: /dir_to_index/

根据 puppet appache 文档https://forge.puppetlabs.com/puppetlabs/apache

目录索引:

通过在目录名称末尾指定“/”来设置当客户端请求目录索引时要查找的资源列表。DirectoryIndex 有更多信息。默认为“undef”。

于 2014-12-30T10:23:01.897 回答