2019-03-03 08:50:49 +00:00
|
|
|
# Retrieve the default values:
|
|
|
|
include_recipe './attributes.rb'
|
|
|
|
|
|
|
|
# Kernel Parameters:
|
|
|
|
include_recipe './kernel.rb'
|
|
|
|
|
2021-05-01 09:22:31 +00:00
|
|
|
# Create the necessary directories:
|
|
|
|
%w( body fastcgi proxy scgi uwsgi ).each do |d|
|
|
|
|
directory "/var/lib/nginx/#{d}" do
|
|
|
|
owner 'www-data'
|
|
|
|
group 'root'
|
|
|
|
mode '755'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
%w( /etc/nginx/sites-enabled /etc/nginx/stream-enabled ).each do |d|
|
|
|
|
directory d do
|
|
|
|
owner 'root'
|
|
|
|
group 'root'
|
|
|
|
mode '0755'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Deploy the nginx configuration files:
|
|
|
|
%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
|
|
|
|
|
2019-03-03 08:50:49 +00:00
|
|
|
# Prerequisites for Building nginx:
|
|
|
|
include_recipe './webadm.rb'
|
|
|
|
|
2020-10-10 13:08:21 +00:00
|
|
|
# Install Let's Encrypt:
|
|
|
|
include_recipe './lego.rb'
|
|
|
|
|
2019-03-03 08:50:49 +00:00
|
|
|
# Build nginx:
|
|
|
|
include_recipe './build.rb'
|
|
|
|
|
|
|
|
# Setup nginx:
|
|
|
|
include_recipe './setup.rb'
|
2021-05-04 02:35:39 +00:00
|
|
|
|