我正在使用http://community.opscode.com/cookbooks/nginx在 Vagrant 上安装 Nginx
我希望 Nginx 从我的配置文件开始/home/vagrant/nginx/nginx.conf
,但它似乎坚持使用etc/nginx/nginx.conf
我的 Vagrantfile 的相关部分是:
chef.add_recipe "ohai"
chef.add_recipe "runit"
chef.add_recipe "nginx"
chef.json = {
:nginx => {
:install_method => "source",
:source => {
:version => "1.4.1",
:conf_path => "#{VAGRANT_HOME_DIRECTORY}/nginx/nginx.conf",
}
}
}
这里发生了什么??