lnurld/server/templates/config.yaml.j2
author Luke Hoersten <luke@hoersten.org>
Sun, 03 Aug 2025 12:51:13 -0500
changeset 41 85750c5b0661
parent 31 562b76293a66
permissions -rw-r--r--
Lots of performance updates and added some flags for reindexing etc. Also added zram comporession.

listen: {{lnurld_host}}:{{lnurld_port}}
data-dir: {{lnurld_data_dir}}
credentials:
  admin: {{lnurld_admin_pass}}
lnd:
  cert-file: {{lnurld_lnd_cert_file}}
  macaroon-file: {{lnurld_lnd_invoice_macaroon}}
accounts:
{% for account in lnurld_accounts %}
  {{account.name}}:
    currency: usd
    description: {{account.desc}}
    is-also-email: {{account.is_email|default(false)}}
    comment-allowed: 210
    min-sendable: 1
    max-sendable: 1_000_000
{% else %}  []
{% endfor %}