Merge branch 'support-blog-staging' of kazu634/itamae into master

This commit is contained in:
Kazuhiro MUSASHI 2019-11-13 12:34:57 +09:00 committed by Gitea
commit b71896e274
3 changed files with 14 additions and 9 deletions

View File

@ -1,8 +1,10 @@
# Create the nginx directory: # Create the nginx directory:
directory '/var/www/blog' do %w( blog test ).each do |d|
owner 'www-data' directory "/var/www/#{d}" do
group 'webadm' owner 'www-data'
mode '770' group 'webadm'
mode '770'
end
end end
# Add the fstab entry: # Add the fstab entry:

View File

@ -0,0 +1 @@
kazu634:$apr1$5iMN.i2P$58gdzg.dm7Tev8gCKXlpa/

View File

@ -22,12 +22,14 @@ link '/etc/nginx/stream-enabled' do
end end
# Deploy the nginx configuration files: # Deploy the nginx configuration files:
remote_file '/etc/nginx/nginx.conf' do %w(nginx.conf basic-auth).each do |f|
owner 'root' remote_file "/etc/nginx/#{f}" do
group 'root' owner 'root'
mode '644' group 'root'
mode '644'
notifies :reload, 'service[nginx]' notifies :reload, 'service[nginx]'
end
end end
# Log rotation setting: # Log rotation setting: