Skip to content

Instantly share code, notes, and snippets.

@nathenharvey
Last active December 27, 2015 02:39
Show Gist options
  • Save nathenharvey/7253803 to your computer and use it in GitHub Desktop.
Save nathenharvey/7253803 to your computer and use it in GitHub Desktop.
#
# Cookbook Name:: apache
# Recipe:: default
#
# Copyright 2013, YOUR_COMPANY_NAME
#
# All rights reserved - Do Not Redistribute
#
package "apache2" do
action :install
end
service "apache2" do
action [ :enable, :start ]
end
cookbook_file "/var/www/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