Skip to content

Instantly share code, notes, and snippets.

@tagty
Created November 22, 2014 16:30
Show Gist options
  • Save tagty/696bb0b06d4feb479f44 to your computer and use it in GitHub Desktop.
Save tagty/696bb0b06d4feb479f44 to your computer and use it in GitHub Desktop.
sample recipe of nginx for chef
package "nginx" do
action :install
end
template "/etc/nginx/nginx.conf" do
owner "root"
group "root"
mode 0644
notifies :reload, "service[nginx]", :delayed
end
service "nginx" do
supports :status => true, :restart => true, :reload => true
action [ :enable , :start ]
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment