-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstack.env
More file actions
34 lines (28 loc) · 1.16 KB
/
Copy pathstack.env
File metadata and controls
34 lines (28 loc) · 1.16 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
# ============================================================
# Denarius — Portainer stack environment
#
# Portainer requires this file to exist in the repo when a stack
# is deployed via Repository. It supplies the ${...} substitutions
# used by docker-compose.yml.
#
# THIS FILE IS COMMITTED TO GIT — never put secrets in it.
# POSTGRES_PASSWORD and JWT_SECRET are deliberately absent: they
# are auto-generated on first run and stored in the denarius_secrets
# Docker volume. Setting them here would publish them and, on an
# existing stack, break the database connection.
# ============================================================
# Tag applied to the images built from this repo.
DENARIUS_VERSION=1.1.0
# Host port for the web UI.
APP_PORT=9723
ENVIRONMENT=production
# CORS origins (comma-separated). Browsing through the UI is
# same-origin via nginx, so localhost is enough to run. Add any
# other hostname you reach the app from, e.g.:
# http://localhost:9723,http://denarius.your-tailnet.ts.net:9723
ALLOWED_ORIGINS=http://localhost:9723
# ---- Sessions ----
ACCESS_TOKEN_EXPIRE_MINUTES=15
REFRESH_TOKEN_EXPIRE_DAYS=30
# ---- Backups ----
BACKUP_RETAIN_DAYS=30