-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env-example
More file actions
26 lines (22 loc) · 842 Bytes
/
.env-example
File metadata and controls
26 lines (22 loc) · 842 Bytes
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
# Set the following vars for your instance
#
#
# Shared vars between both containers
API_SECRET=_REPLACE_WITH_SECURE_API_SECRET_
AI_LLM_KEY=_YOUR_LLM_KEY_
TZ=_SET_YOUR_TIMEZONE_ (e.g America/Los_Angeles)
# Nginx container variables
URL=example.com # change to your domain that you want a letsencrypt cert for
SUBDOMAIN=wildcard # generate a wildcard cert for your domain to use for Dev and Prod FQDN
VALIDATION=dns # Use cloudflare DNS letsencrypt validation
DNSPLUGIN=cloudflare
# Prod container variables
CUSTOM_TITLE=Nighscout-Multi
MONGO_INITDB_ROOT_PASSWORD=_REPLACE_WITH_SECURE_MONGO_PASSWORD_
BASE_URL=https://cgm.example.com
PORT=1337
# Dev container variables
DEV_CUSTOM_TITLE=Nighscout-Multi-Dev
DEV_MONGO_INITDB_ROOT_PASSWORD=_REPLACE_WITH_SECURE_MONGO_PASSWORD_FOR_DEV_
DEV_BASE_URL=https://cgm-dev.example.com
DEV_PORT=1338