src.nth.io/

summaryrefslogtreecommitdiff
path: root/lnd/tasks
diff options
context:
space:
mode:
authorLuke Hoersten <[email protected]>2026-04-05 20:19:40 -0500
committerLuke Hoersten <[email protected]>2026-04-05 21:24:11 -0500
commitf2f3906b8e9f1af99de9cf6488d54732a711dfc6 (patch)
tree414cb39be7b20b6df56456ef9652b47fde1734fc /lnd/tasks
parentcaf13f1cbef5faf089a27f23b25202660780829c (diff)
Harden bitcoind and lnd: file permissions, service binding, no_logHEADmain
- Config files 0644 -> 0600 - Add no_log: true to config tasks - Bind lnd rpclisten and restlisten to 127.0.0.1
Diffstat (limited to 'lnd/tasks')
-rw-r--r--lnd/tasks/main.yaml3
1 files changed, 2 insertions, 1 deletions
diff --git a/lnd/tasks/main.yaml b/lnd/tasks/main.yaml
index bd7c360..965114b 100644
--- a/lnd/tasks/main.yaml
+++ b/lnd/tasks/main.yaml
@@ -60,8 +60,9 @@
dest: "{{lnd_conf_dir}}/lnd.conf"
owner: "{{lnd_user}}"
group: "{{lnd_user}}"
- mode: "0644"
+ mode: "0600"
notify: restart lnd
+ no_log: true
- name: install lnd service
become: yes