author | Luke Hoersten <luke@hoersten.org> |
Tue, 16 Jan 2024 00:05:24 -0600 | |
changeset 32 | 500a32d1f026 |
parent 31 | 562b76293a66 |
permissions | -rw-r--r-- |
31
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
1 |
listen: {{lnurld_host}}:{{lnurld_port}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
2 |
data-dir: {{lnurld_data_dir}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
3 |
credentials: |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
4 |
admin: {{lnurld_admin_pass}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
5 |
lnd: |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
6 |
cert-file: {{lnurld_lnd_cert_file}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
7 |
macaroon-file: {{lnurld_lnd_invoice_macaroon}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
8 |
accounts: |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
9 |
{% for account in lnurld_accounts %} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
10 |
{{account.name}}: |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
11 |
currency: usd |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
12 |
description: {{account.desc}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
13 |
is-also-email: {{account.is_email|default(false)}} |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
14 |
comment-allowed: 210 |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
15 |
min-sendable: 1 |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
16 |
max-sendable: 1_000_000 |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
17 |
{% else %} [] |
562b76293a66
Moved lnurld from my general ansible roles repo to the btc specific repo.
Luke Hoersten <luke@hoersten.org>
parents:
diff
changeset
|
18 |
{% endfor %} |