Deploy/configure LndHub #350

Merged
greg merged 9 commits from feature/lndhub into master 2021-12-02 17:07:17 +00:00
3 changed files with 7 additions and 1 deletions
Showing only changes of commit 6b2e501c90 - Show all commits

View File

@ -70,7 +70,9 @@
"nginx::commons_dir",
"nginx::commons_script",
"nginx::commons_conf",
"kosmos-nginx::firewall"
"kosmos-nginx::firewall",
"backup::default",
"logrotate::default"
],
"platform": "ubuntu",
"platform_version": "20.04",

View File

@ -20,6 +20,7 @@ chef_version '>= 14.0'
# source_url 'https://github.com/<insert_org_here>/kosmos-bitcoin'
depends 'ark'
depends 'backup'
depends 'git'
depends 'golang'
depends 'kosmos-nginx'

View File

@ -114,4 +114,7 @@ unless node.chef_environment == "development"
nginx_site node[app_name]['domain'] do
action :enable
end
node.override["backup"]["archives"]["lndhub"] = ["/var/lib/redis/dump-6379.rdb"]
include_recipe "backup"
end