Merge branch 'support-blog-staging' of kazu634/itamae into master
This commit is contained in:
commit
b71896e274
|
@ -1,9 +1,11 @@
|
|||
# Create the nginx directory:
|
||||
directory '/var/www/blog' do
|
||||
%w( blog test ).each do |d|
|
||||
directory "/var/www/#{d}" do
|
||||
owner 'www-data'
|
||||
group 'webadm'
|
||||
mode '770'
|
||||
end
|
||||
end
|
||||
|
||||
# Add the fstab entry:
|
||||
file '/etc/fstab' do
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
kazu634:$apr1$5iMN.i2P$58gdzg.dm7Tev8gCKXlpa/
|
|
@ -22,13 +22,15 @@ link '/etc/nginx/stream-enabled' do
|
|||
end
|
||||
|
||||
# Deploy the nginx configuration files:
|
||||
remote_file '/etc/nginx/nginx.conf' do
|
||||
%w(nginx.conf basic-auth).each do |f|
|
||||
remote_file "/etc/nginx/#{f}" do
|
||||
owner 'root'
|
||||
group 'root'
|
||||
mode '644'
|
||||
|
||||
notifies :reload, 'service[nginx]'
|
||||
end
|
||||
end
|
||||
|
||||
# Log rotation setting:
|
||||
remote_file '/etc/logrotate.d/nginx' do
|
||||
|
|
Loading…
Reference in New Issue