-
Notifications
You must be signed in to change notification settings - Fork 3
/
phoenixd-lnurl.env.example
30 lines (23 loc) · 1.4 KB
/
phoenixd-lnurl.env.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
## What username do you want? Note this has to be `a-z0-9-_.` per the LNURL spec,
## it's not as expressive as an email address.
USERNAME=satoshi
## The hostname (not including `https://` etc.) where you'll be running
## your LNURL. This is used to make your address e.g. `satoshi@example.com`,
## and also to provide the correct URLs in responses to payment requests.
LNURL_HOSTNAME=example.com
## URL of your `phoenixd` instance. Note the username (`satoshi` here)
## is not used, but you have to set it to something. `satoshi` or `_` work well.
## Your `phoenixd` instance will put its password in `~/.phoenix/phoenix.conf`
PHOENIXD_URL=http://_:hunter2@127.0.0.1:9740
## Optional: set the minimum number of sats you wish to recieve in a single payment (default: 1)
# MIN_SATS_RECEIVABLE=1
## Optional: set the minimum number of sats you wish to recieve in a single payment (default: all of the sats)
# MAX_SATS_RECEIVABLE=2100000000000000
## Optional; set to show a profile photo on your tips page `/lnurl`
# USER_PROFILE_IMAGE_URL=https://example.com/your_profile_photo.png
## Optional; set to show an `npub` or `nprofile` or NIP5 identifier on your tips page `/lnurl`
# USER_NOSTR_ADDRESS=npub1...
## Optional & Technical: Change the log level. Values: "INFO" (default), "DEBUG", "WARNING", etc.
# LOG_LEVEL=DEBUG
## WARNING: Intended for development only, enables useful but dangerous-in-public debug features
# DEBUG=1