Skip to content

Commit

Permalink
Merge pull request #108 from positiveblue/config-passphrase
Browse files Browse the repository at this point in the history
config: make `sample-conf.yaml` less error prone
  • Loading branch information
guggero authored Feb 12, 2024
2 parents 066cd55 + 2145b4a commit f4f593d
Showing 1 changed file with 19 additions and 7 deletions.
26 changes: 19 additions & 7 deletions sample-conf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ profile: 9999
# Settings for the lnd node used to generate payment requests. All of these
# options are required.
authenticator:
## Common fields.

# The chain network the lnd is active on.
network: "simnet"

# Set to true to disable any auth.
disable: false


## Direct LND connection fields.

# The host:port which lnd's RPC can be reached at.
lndhost: "localhost:10009"

Expand All @@ -35,21 +46,22 @@ authenticator:
# The path to lnd's macaroon directory.
macdir: "/path/to/lnd/data/chain/bitcoin/simnet"

# The chain network the lnd is active on.
network: "simnet"

## LNC connection fields.

# The LNC connection passphrase.
passphrase: "my-own-passphrase"
# NOTE: The passphrase generates a secret for authenticating the LNC
# connection. Once a passphrase has been utilized for a connection, it
# cannot be reused in a different server/database.
passphrase: "your pairing phrase"

# The host:port of the mailbox server to be used.
mailboxaddress: "mailbox.terminal.lightning.today:443"

# Set to true to skip verification of the mailbox server's tls cert.
devserver: false

# Set to true to disable any auth.
disable: false


# The selected database backend. The current default backend is "sqlite".
# Aperture also has support for postgres and etcd.
dbbackend: "sqlite"
Expand Down

0 comments on commit f4f593d

Please sign in to comment.