Skip to content

Instantly share code, notes, and snippets.

@smalltown
Last active April 23, 2016 13:48
Show Gist options
  • Save smalltown/9e747a877f452f67e855c80096c145e4 to your computer and use it in GitHub Desktop.
Save smalltown/9e747a877f452f67e855c80096c145e4 to your computer and use it in GitHub Desktop.
#
# Cookbook Name:: apache
# Recipe:: default
#
# Copyright (c) 2016 The Authors, All Rights Reserved.
package "apache2" do
action :install
end
service "apache2" do
action [ :enable, :start ]
end
cookbook_file "var/www/html/index.html" do
source "index.html"
mode "0644"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment