106 lines
2.1 KiB
Plaintext
106 lines
2.1 KiB
Plaintext
# ---
|
|
# - Configuration file for script 'update_nextcloud.sh'
|
|
# ---
|
|
|
|
# - Website name of your Nextcloud to update
|
|
# -
|
|
WEBSITE="<site-name-of-cloud-instance>"
|
|
|
|
# - Third Party modules of your NextCloud instance
|
|
# -
|
|
# - This Parameter is currently not in use
|
|
# -
|
|
# - Possible values are app-names like 'calendar' , 'contacts' , ..
|
|
# -
|
|
# - Takes a space seperated list
|
|
# -
|
|
#THIRD_PARTY_APPS="calendar contacts notes richdocuments"
|
|
|
|
|
|
# - Source directory for tar archives of Nextcloud
|
|
# -
|
|
# - Defaults to '/usr/local/src/nextcloud'
|
|
# -
|
|
#SRC_BASE_DIR="/usr/local/src/nextcloud"
|
|
|
|
|
|
# - Webservers user
|
|
# -
|
|
# - The script wil determin the webservers user, so you don't need to
|
|
# - configure it here.
|
|
# -
|
|
# - Setting this value take precedence over the scripts determined value.
|
|
#
|
|
#HTTP_USER=
|
|
|
|
# - Webservers group
|
|
# -
|
|
# - The script wil determin the webservers group, so you don't need to
|
|
# - configure it here.
|
|
# -
|
|
# - Setting this value take precedence over the scripts determined value.
|
|
# -
|
|
#HTTP_GROUP=
|
|
|
|
|
|
# - Web base directory
|
|
# -
|
|
# - the directory where the documentroot lives
|
|
# -
|
|
# - Defaults to '/var/www/$WEBSITE
|
|
# -
|
|
#WEB_BASE_DIR="/var/www/owncloud-test.oopen.de"
|
|
|
|
# - PHP engine
|
|
# -
|
|
# - Possible values: 'FPM' 'FCGI' 'MOD-PHP'
|
|
# -
|
|
# - Defaults to 'FPM'
|
|
# -
|
|
#PHP_ENGINE=FPM
|
|
|
|
# - PHP main version
|
|
# -
|
|
# - Examples:
|
|
# - PHP_VERSION=5.6
|
|
# - PHP_VERSION=7.1
|
|
# -
|
|
# - only needed, if PHP_ENGINE ist set to 'FPM'
|
|
# -
|
|
PHP_VERSION=
|
|
|
|
# - Database type
|
|
# -
|
|
# - Setting this value is required!
|
|
# -
|
|
# - Possible values: 'mysql' 'postgres'
|
|
# -
|
|
DATABASE_TYPE="mysql"
|
|
|
|
# - Database Name
|
|
# -
|
|
# - Setting this value is required!
|
|
# -
|
|
DATABASE_NAME="ownCloud_test"
|
|
|
|
# - Credentials to access MySQL/MariaDB Database
|
|
# -
|
|
# - 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"
|
|
# -
|
|
MYSQL_CREDENTIALS="--login-path=local"
|
|
|
|
|
|
# - Credentials to access PostgreSQL Database
|
|
# -
|
|
PSQL_USER=
|
|
PSQL_PASS=
|
|
|
|
# - PostgreSQL Server
|
|
# -
|
|
# - defaults to 'localhost'
|
|
# -
|
|
PSQL_SERVER=
|