forked from lescuer97/nutmix
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.example
More file actions
40 lines (31 loc) · 1.17 KB
/
env.example
File metadata and controls
40 lines (31 loc) · 1.17 KB
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
31
32
33
34
35
36
37
38
39
40
# hex endcoded 32 byte key
MINT_PRIVATE_KEY="" # Private key of the mint
ADMIN_NOSTR_NPUB="" # used for login to the admin dashboard
# DATABASE
POSTGRES_USER="postgres"
POSTGRES_PASSWORD="" # Use a strong password
DATABASE_URL="postgres://postgres:admin@db/postgres" # used in docker development and productions
# DATABASE_URL="postgres://postgres:admin@localhost:5432/postgres" # used in local development
# HOSTING
LE_EMAIL_ADDRESS="email@forletsencrypt.com"
MINT_HOSTNAME="mint.example.com"
TRAEFIK_HOSTNAME="traefik.example.com"
# Type of signer used by the mint
SIGNER_TYPE="memory"
# SIGNER_TYPE="abstract_socket"
# SIGNER_TYPE="network"
# PATHS FOR CERTIFICATED NEEDED FOR REMOTE SIGNER
SIGNER_CLIENT_TLS_KEY="tls/client-cert.pem"
SIGNER_CLIENT_TLS_CERT="tls/client-key.pem"
SIGNER_CA_CERT="tls/ca-cert.pem" # Not obligatory all the time
# for network signer
# NETWORK_SIGNER_ADDRESS="localhost:1721"
# Keycloak AND keycloak database
KEYCLOAK_POSTGRES_DB=keycloak_db
KEYCLOAK_POSTGRES_USER=keycloak_db_user
KEYCLOAK_POSTGRES_PASSWORD=keycloak_db_user_password
KEYCLOAK_ADMIN=admin
KEYCLOAK_ADMIN_PASSWORD=password
KEYCLOAK_HOSTNAME=localhost
KEYCLOAK_HOSTNAME_PORT=8081
PORT=""