109 lines
2.2 KiB
Plaintext
109 lines
2.2 KiB
Plaintext
#--------------------------------------
|
|
# Settings for Keycloak Install scripts
|
|
#--------------------------------------
|
|
|
|
# FQHN_HOSTNAME
|
|
#
|
|
# The full qualified histname under which bbb service
|
|
# is available
|
|
#
|
|
# Defaults to full qualified hostname of the system
|
|
#
|
|
#FQHN_HOSTNAME=""
|
|
|
|
|
|
# KEYCLOAK_USER
|
|
#
|
|
# The user under which Keycloak service is running.
|
|
#
|
|
# Defaults to: KEYCLOAK_USER="keycloak"
|
|
#
|
|
#KEYCLOAK_USER=""
|
|
|
|
|
|
# KEYCLOAK_GROUP
|
|
#
|
|
# The group of the keycloak user.
|
|
#
|
|
#
|
|
#KEYCLOAK_GROUP=""
|
|
|
|
|
|
# KEYCLOAK_BASE_INSTALL_PATH
|
|
#
|
|
# Base directora in which the keycloak installation lives.
|
|
#
|
|
# Defaults to: KEYCLOAK_BASE_INSTALL_PATH="/opt"
|
|
#
|
|
#KEYCLOAK_BASE_INSTALL_PATH="/opt"
|
|
|
|
|
|
# DB_TYPE
|
|
#
|
|
# Type of Keycloak database
|
|
#
|
|
# Possible values are 'pgsql' (PostgeSQL) or 'mysql' (MySQL)
|
|
#
|
|
# Defaults to POSTFIX_DB_TYPE="pgsql"
|
|
#
|
|
# DB_TYPE="pgsql"
|
|
|
|
|
|
# MYSQL_CREDENTIAL_ARGS
|
|
#
|
|
# Giving password on command line is insecure an sind mysql 5.5
|
|
# you will get a warning doing so.
|
|
#
|
|
# Reading username/password fro file ist also possible, using MySQL/MariaDB
|
|
# commandline parameter '--defaults-file'.
|
|
#
|
|
# Since Version 5.6, that method is considered as insecure.
|
|
# To avoid giving the password on command line, we use an
|
|
# encrypted option file
|
|
#
|
|
# Create (encrypted) option file:
|
|
# $ mysql_config_editor set --login-path=local --socket=/var/run/mysqld/mysqld.sock --user=backup --password
|
|
# $ Password:
|
|
#
|
|
# Use of option file:
|
|
# $ mysql --login-path=local ...
|
|
#
|
|
# Example
|
|
# MYSQL_CREDENTIAL_ARGS="--login-path=local"
|
|
# MYSQL_CREDENTIAL_ARGS="--defaults-file=/etc/mysql/debian.cnf" (Debian default)
|
|
# MYSQL_CREDENTIAL_ARGS="--defaults-file=/usr/local/mysql/sys-maint.cnf"
|
|
#
|
|
# # MariaDB 10.4.x
|
|
# MYSQL_CREDENTIAL_ARGS="-u root -S /tmp/mysql.sock"
|
|
#
|
|
# Defaults to MYSQL_CREDENTIAL_ARGS="-u root -S /tmp/mysql.sock"
|
|
#
|
|
#MYSQL_CREDENTIAL_ARGS="--login-path=local"
|
|
|
|
|
|
# DB_NAME
|
|
#
|
|
# Database Name of Mattemost's Database
|
|
#
|
|
# Defaults to: DB_NAME="keycloak"
|
|
#
|
|
#DB_NAME="keycloak"
|
|
|
|
# DB_USER
|
|
#
|
|
# Database USER of Mattemost's Database
|
|
#
|
|
# Defaults to: DB_USER="keycloak"
|
|
#
|
|
#DB_USER="keycloak"
|
|
|
|
|
|
# DB_PASS
|
|
#
|
|
# Database Password used for Mattemost's Database
|
|
#
|
|
# Defaults to a random created one.
|
|
#
|
|
#DB_PASS=""
|
|
|