Advertisement
michaelpastes

Untitled

Jul 22nd, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. directory "/home/#{node[:user][:name]}/example" do
  2. owner node[:user][:name]
  3. end
  4.  
  5. file "/home/#{node[:user][:name]}/example/index.html" do
  6. owner node[:user][:name]
  7. content "<h1>Hello World!</h1>"
  8. end
  9.  
  10. file "#{node[:nginx][:dir]}/sites-available/example" do
  11. content "server { root /home/#{node[:user][:name]}/example; }"
  12. end
  13.  
  14. nginx_site "example"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement