112 lines
2.4 KiB
Plaintext
112 lines
2.4 KiB
Plaintext
#----------------------------------------
|
|
# Settings for Mattermost Install scripts
|
|
#----------------------------------------
|
|
|
|
# FQHN_HOSTNAME
|
|
#
|
|
# The full qualified histname under which bbb service
|
|
# is available
|
|
#
|
|
# Defaults to full qualified hostname of the system
|
|
#
|
|
FQHN_HOSTNAME=""
|
|
|
|
|
|
# MATTERMOST_USER
|
|
#
|
|
# The user under which Mattermost service is running.
|
|
#
|
|
# Defaults to: MATTERMOST_USER="mattermost"
|
|
#
|
|
#MATTERMOST_USER=""
|
|
|
|
|
|
# MATTERMOST_GROUP
|
|
#
|
|
# The group od mattermost user.
|
|
#
|
|
# Defaults to: MATTERMOST_GROUP="$MATTERMOST_USER"
|
|
#
|
|
#MATTERMOST_GROUP=""
|
|
|
|
|
|
# MATTERMOST_BASE_INSTALL_PATH
|
|
#
|
|
# The install cwpathdirectory is everything before the first occurrence of
|
|
# the string /mattermost. In this example, the {install-path} is /opt. If
|
|
# that command does not produce any results because your version is older,
|
|
# try whereis platform instead.
|
|
#
|
|
# Defaults to: MATTERMOST_BASE_INSTALL_PATH="/opt"
|
|
#
|
|
#MATTERMOST_BASE_INSTALL_PATH="/opt"
|
|
|
|
|
|
# DB_TYPE
|
|
#
|
|
# Type of Mattermost 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"
|
|
#
|
|
# No Defaults
|
|
#
|
|
#MYSQL_CREDENTIAL_ARGS="--login-path=local"
|
|
|
|
|
|
# DB_NAME
|
|
#
|
|
# Database Name of Mattemost's Database
|
|
#
|
|
# Defaults to: DB_NAME="mattermost"
|
|
#
|
|
#DB_NAME="mattermost"
|
|
|
|
# DB_USER
|
|
#
|
|
# Database USER of Mattemost's Database
|
|
#
|
|
# Defaults to: DB_USER="mattermost"
|
|
#
|
|
#DB_USER="mattermost"
|
|
|
|
|
|
# DB_PASS
|
|
#
|
|
# Database Password used for Mattemost's Database
|
|
#
|
|
# Defaults to a random created one.
|
|
#
|
|
#DB_PASS=""
|