46 lines
1.5 KiB
Plaintext
46 lines
1.5 KiB
Plaintext
# Base domain
|
|
# Will generate a selfsigned if letsencrypt not validates against this host
|
|
# NOTE: This should be your root domain as many subdomains will be needed.
|
|
# Should be wildcard domain SSL cert
|
|
# To use it locally with self-signed certs be sure to add this subdomains
|
|
# to your /etc/hosts (ipa, login and hydra)
|
|
DOMAIN=mydomain.org
|
|
LETSENCRYPT_EMAIL=
|
|
# Generate letsencrypt certificate for root domain
|
|
# Values:
|
|
# - false (default): dont generate certificate for root domain, only for
|
|
# subdomains.
|
|
# - true: generate certificate for root domain and subdomains.
|
|
#LETSENCRYPT_DOMAIN_ROOT=false
|
|
|
|
DB_FOLDER=/opt/isard-sso/db
|
|
DATA_FOLDER=/opt/isard-sso/data
|
|
SRC_FOLDER=/opt/isard-sso/src
|
|
|
|
# NOTE: All admin usernames are 'admin'
|
|
|
|
### FREEIPA (ipa)
|
|
###########################################################################
|
|
IPA_ADMIN_PWD=freeipafreeipa
|
|
|
|
### KEYCLOAK (sso)
|
|
###########################################################################
|
|
KEYCLOAK_USER=admin
|
|
KEYCLOAK_PASSWORD=keycloakkeycloak
|
|
|
|
KEYCLOAK_DB_ADDR=isard-sso-postgresql
|
|
KEYCLOAK_DB_DATABASE=keycloak
|
|
KEYCLOAK_DB_USER=keycloak
|
|
KEYCLOAK_DB_PASSWORD=keycloakkeycloak
|
|
|
|
### POSTGRES
|
|
###########################################################################
|
|
POSTGRES_PASSWORD=postgrespostgres
|
|
POSTGRES_USER=admin
|
|
|
|
## DOCKER IMAGES
|
|
#NGINX_ALPINE_IMG=nginx:1.21.6-alpine
|
|
#POSTGRES_BACKUP_LOCAL_IMG=prodrigestivill/postgres-backup-local:14-debian-2aa03d1
|
|
#HAPROXY_IMG=haproxy:2.4.12-alpine3.15
|
|
#MINIO_IMG=mino/minio:RELEASE.2022-01-25T19-56-04Z
|