cookbook 'apache_vhosts', '= 0.0.20140108'
apache_vhosts (4) Versions 0.0.20140108 Follow10
Helps to configure virtual hosts for apache2
cookbook 'apache_vhosts', '= 0.0.20140108', :supermarket
knife supermarket install apache_vhosts
knife supermarket download apache_vhosts
Virtual Hosts Cookbook for Chef and Vagrant
This cookbook makes configuring Apache virtual hosts.
Especially useful for Vagrant.
Usage (part of Vagrant file)
config.vm.provision :chef_solo do |chef|
chef.cookbooks_path = ["cookbooks"]
chef.add_recipe 'apache2'
chef.add_recipe 'apache_vhosts'
:apache_vhosts=>[
{
:app=>"app1",
:path=>"/var/www/app1",
:server_name=>"app1.local",
:server_email=>"serveremail@app1.com"
},
{
:app=>"app2",
:path=>"/var/www/app2",
:server_name=>"app2.local",
:server_email=>"serveremail@app2.com"
}
]
end
Dependent cookbooks
apache2 >= 0.0.0 |
Contingent cookbooks
There are no cookbooks that are contingent upon this one.