Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

config: make sample-conf.yaml less error prone #108

Merged
merged 3 commits into from
Feb 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading