nodejs #2
0
attributes/apache.rb
Normal file
0
attributes/apache.rb
Normal file
@ -1,5 +1,52 @@
|
|||||||
#
|
[
|
||||||
# Cookbook:: t42-common
|
'apache2',
|
||||||
# Recipe:: default
|
'apache2-dev',
|
||||||
#
|
'libapache2-mod-wsgi-py3',
|
||||||
# Copyright:: 2019, The Authors, All Rights Reserved.
|
].each do |pkg|
|
||||||
|
apt_package pkg
|
||||||
|
end
|
||||||
|
|
||||||
|
file '/etc/apache2/sites-enabled/000-default.conf' do
|
||||||
|
action :delete
|
||||||
|
end
|
||||||
|
|
||||||
|
execute 'enable apache mods' do
|
||||||
|
command 'a2enmod expires'
|
||||||
|
end
|
||||||
|
|
||||||
|
if node['web']['do_ssl']
|
||||||
|
apt_repository 'certbot apt repo' do
|
||||||
|
uri 'ppa:certbot/certbot'
|
||||||
|
repo_name 'ppa-certbot'
|
||||||
|
deb_src true
|
||||||
|
action :add
|
||||||
|
end
|
||||||
|
|
||||||
|
apt_update
|
||||||
|
|
||||||
|
[
|
||||||
|
'software-properties-common',
|
||||||
|
'certbot',
|
||||||
|
'python-certbot-apache',
|
||||||
|
].each do |pkg|
|
||||||
|
apt_package pkg
|
||||||
|
end
|
||||||
|
|
||||||
|
execute 'apache certbot' do
|
||||||
|
command "sudo certbot certonly --standalone -d #{node['app']['domain']} --non-interactive --agree-tos --email #{node['web']['admin_email']}"
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
if node['web']['socket.io']
|
||||||
|
execute 'enable apache mods' do
|
||||||
|
command 'a2enmod rewrite; a2enmod proxy_wstunnel; a2enmod proxy_http'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
template '/etc/apache2/sites-enabled/000-server.conf' do
|
||||||
|
source 'apache/vhost.conf.erb'
|
||||||
|
end
|
||||||
|
|
||||||
|
systemd_unit 'apache2.service' do
|
||||||
|
action :restart
|
||||||
|
end
|
||||||
|
74
templates/apache/vhost.conf.erb
Normal file
74
templates/apache/vhost.conf.erb
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
<VirtualHost *:80>
|
||||||
|
ServerName www.<%= node['app']['domain'] %>
|
||||||
|
Redirect permanent / http://<%= node['app']['domain'] %>/
|
||||||
|
</VirtualHost>
|
||||||
|
|
||||||
|
<% if node['web']['do_ssl'] %>
|
||||||
|
<VirtualHost *:443>
|
||||||
|
ServerName www.<%= node['app']['domain'] %>
|
||||||
|
Redirect permanent / https://<%= node['app']['domain'] %>/
|
||||||
|
|
||||||
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
||||||
|
SSLCertificateFile /etc/letsencrypt/live/<%= node['app']['domain'] %>/fullchain.pem
|
||||||
|
SSLCertificateKeyFile /etc/letsencrypt/live/<%= node['app']['domain'] %>/privkey.pem
|
||||||
|
</VirtualHost>
|
||||||
|
|
||||||
|
<VirtualHost *:443>
|
||||||
|
Include /etc/letsencrypt/options-ssl-apache.conf
|
||||||
|
SSLCertificateFile /etc/letsencrypt/live/<%= node['app']['domain'] %>/fullchain.pem
|
||||||
|
SSLCertificateKeyFile /etc/letsencrypt/live/<%= node['app']['domain'] %>/privkey.pem
|
||||||
|
|
||||||
|
<Location /server-status>
|
||||||
|
SetHandler server-status
|
||||||
|
Order Deny,Allow
|
||||||
|
Allow from all
|
||||||
|
</Location>
|
||||||
|
|
||||||
|
<Location /server-info>
|
||||||
|
SetHandler server-info
|
||||||
|
Order Deny,Allow
|
||||||
|
Allow from all
|
||||||
|
</Location>
|
||||||
|
<% else %>
|
||||||
|
<VirtualHost *:80>
|
||||||
|
<% end %>
|
||||||
|
ServerName <%= node['app']['domain'] %>
|
||||||
|
|
||||||
|
<IfModule mod_expires.c>
|
||||||
|
<FilesMatch "\.(jpe?g|png|gif|js|css)$">
|
||||||
|
ExpiresActive On
|
||||||
|
ExpiresDefault "access plus 1 week"
|
||||||
|
</FilesMatch>
|
||||||
|
</IfModule>
|
||||||
|
|
||||||
|
<% node['web']['static'].each do |static| -%>
|
||||||
|
Alias <%= static['uri'] %> <%= node['working-dir'] %>/<%= static['path'] %>
|
||||||
|
|
||||||
|
<% end -%>
|
||||||
|
|
||||||
|
<% if node['web']['wsgi'] %>
|
||||||
|
|
||||||
|
WSGIDaemonProcess <%= node['app']['name'] %> python-path=<%= node['python']['working-dir'] %> python-home=<%= node['python']['virtualenv_path'] %>
|
||||||
|
WSGIProcessGroup <%= node['app']['name'] %>
|
||||||
|
WSGIScriptAlias / <%= node['working-dir'] %>/<%= node['web']['wsgi']['wsgi_path'] %>
|
||||||
|
|
||||||
|
<Directory "<%= node['working-dir'] %>">
|
||||||
|
Require all granted
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<% end %>
|
||||||
|
|
||||||
|
<% if node['web']['socket.io'] %>
|
||||||
|
|
||||||
|
# socket.io conf
|
||||||
|
RewriteEngine On
|
||||||
|
RewriteCond %{HTTP:UPGRADE} ^WebSocket$ [NC]
|
||||||
|
RewriteCond %{HTTP:CONNECTION} Upgrade$ [NC]
|
||||||
|
RewriteRule .* ws://<%= node['web']['socket.io']['host']%>:<%= node['web']['socket.io']['port']%>%{REQUEST_URI} [P]
|
||||||
|
RewriteCond %{REQUEST_URI} ^/socket.io/$1/websocket [NC]
|
||||||
|
RewriteRule socket.io/(.*) ws://<%= node['web']['socket.io']['host']%>:<%= node['web']['socket.io']['port']%>/socket.io/$1 [P,L]
|
||||||
|
ProxyPass /socket.io http://<%= node['web']['socket.io']['host']%>:<%= node['web']['socket.io']['port']%>/socket.io
|
||||||
|
ProxyPassReverse /socket.io http://<%= node['web']['socket.io']['host']%>:<%= node['web']['socket.io']['port']%>/socket.io
|
||||||
|
|
||||||
|
<% end %>
|
||||||
|
</VirtualHost>
|
Loading…
x
Reference in New Issue
Block a user