Add Liquor Cabinet cookbooks and configs, deploy to production #541

Merged
raucao merged 13 commits from feature/535-liquor_cabinet into master 2024-02-04 13:47:05 +00:00
Showing only changes of commit 5f7701c288 - Show all commits

View File

@ -11,7 +11,7 @@ upstream _<%= @app_name %> {
# variables_hash_max_size 2048;
server {
listen 80;
listen <%= "#{node['openresty']['listen_ip']}:" if node['openresty']['listen_ip'] %>80;
listen [::]:80;
server_name <%= @server_name %>;
# Redirect to https
@ -21,7 +21,7 @@ server {
}
server {
listen 443 ssl http2;
listen <%= "#{node['openresty']['listen_ip']}:" if node['openresty']['listen_ip'] %>443 ssl http2;
listen [::]:443 ssl http2;
server_name <%= @server_name %>;