Puphpet、Vagrant 和 Nginx 自定义位置

Puphpet、Vagrant 和 Nginx 自定义位置

我正在尝试将一些自定义 Nginx 位置添加到 Vagrant Puphpet config.yaml 文件中,但似乎找不到正确的格式。我搜索了它但没有找到。有人已经这样做了吗?如果有,怎么做的?

我的 config.yaml 如下所示:

nginx:
install: '1'
settings:
    default_vhost: 1
    proxy_buffer_size: 128k
    proxy_buffers: '4 256k'
vhosts:
    www:
        server_name: 'www.localhost.com'
        www_root: /var/www/htdocs
        listen_port: '80'
        index_files:
            - index.html
            - index.htm
            - index.php
        envvars:
            - 'APP_ENV dev'
        ssl_cert: ''
        ssl_key: ''
location:
    vhost: 'www'
    location: '^/wiki'
    location_custom_cfg_prepend:
        - "root /var/www/htodcs/wiki;"
location:
    vhost: 'www'
    location: '/'
    location_custom_cfg_prepend:
        - "root /var/www/htdocs/main"

谢谢!

答案1

目前,PuPHPet 本身并不支持此功能。

您可以在 github repo 上打开功能请求单,或者提交 PR!

相关内容