diff --git a/recipes/default.rb b/recipes/default.rb index c8ff93f..fb1b9b7 100644 --- a/recipes/default.rb +++ b/recipes/default.rb @@ -6,3 +6,17 @@ # # All rights reserved - Do Not Redistribute # + +package 'apache2' + +service 'apache2' do + action [:enable, :start] +end + +template '/var/www/index.html' do + owner 'root' + group 'root' + mode '0755' + source 'index.html.erb' +end +