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",
}
}
}
何が起きてる??