Last active
April 23, 2016 13:48
-
-
Save smalltown/9e747a877f452f67e855c80096c145e4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# 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