-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.env.tpl
31 lines (25 loc) · 919 Bytes
/
.env.tpl
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
PROXY_HTTP_PORT=80
# HTTPS with Traefik and LetsEncrypt :
PROXY_HTTPS_PORT=443
[email protected] # replace email for LetsEncrypt/ACME notifications
SERVERNAME_URL=geopaysages.fr # your GeoPaysages server name (required for https certificates)
HTTPS_IN_PROXY=1
DB_NAME=geopaysages
DB_USER=geopaysages
DB_PASSWORD=password
DB_PORT=5432
THUMBOR_SECURITY_KEY=secret # replace with a secret key
FLASK_SECRET_KEY=secret # replace with a secret key
# Docker images
DB_IMAGE=ghcr.io/pnx-si/geopaysages_db:latest
ADMIN_IMAGE=ghcr.io/pnx-si/geopaysages_admin:latest
BACKEND_IMAGE=ghcr.io/pnx-si/geopaysages_backend:latest
# Application code for UsersHub-Authentification-Module needs
CODE_APPLICATION=GP
# You probably don't need to change this values
DEBUG=0
ADMIN_ENV_DEV=0
DB_ADDRESS=db
DB_URL=postgresql://${DB_USER}:${DB_PASSWORD}@${DB_ADDRESS}:${DB_PORT}/${DB_NAME}
CUSTOM_PATH=../custom
# PROXY_API_PORT=8081