130 lines
2.4 KiB
Plaintext
130 lines
2.4 KiB
Plaintext
# ---
|
|
# - Configuration file for script 'update_nextcloud.sh'
|
|
# ---
|
|
|
|
|
|
# - WEBSITE
|
|
# -
|
|
# - URL of cloud service
|
|
# -
|
|
# - No default value
|
|
# -
|
|
#WEBSITE=""
|
|
|
|
|
|
# - SRC_BASE_DIR
|
|
# -
|
|
# - Source directory for downloading nextcloud
|
|
# -
|
|
# - Default: SRC_BASE_DIR="/usr/local/src/nextcloud"
|
|
# -
|
|
#SRC_BASE_DIR="/usr/local/src/nextcloud"
|
|
|
|
|
|
# - WEB_DIRS_ROOT
|
|
# -
|
|
# - Default: WEB_DIRS_ROOT="/var/www"
|
|
# -
|
|
#WEB_DIRS_ROOT="/var/www"
|
|
|
|
|
|
# - WEBSERVER_SOFTWARE
|
|
# -
|
|
# - Installed Webserver Software. Possoble values are:
|
|
# - - apache
|
|
# - - nginx
|
|
# -
|
|
# - Default: nginx
|
|
# -
|
|
#WEBSERVER_SOFTWARE="nginx"
|
|
|
|
|
|
# - 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=
|
|
|
|
|
|
# - PHP engine
|
|
# -
|
|
# - Possible values: 'FPM' 'FCGI' 'MOD-PHP'
|
|
# -
|
|
# - Note: at time only FPM is supported!!
|
|
# -
|
|
# - Default: PHP_ENGINE="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'
|
|
# -
|
|
# - Defaults: DATABASE_TYPE="mysql"
|
|
#DATABASE_TYPE="mysql"
|
|
|
|
# - DATABASE_NAME
|
|
# -
|
|
# - Setting this value is required!
|
|
# -
|
|
DATABASE_NAME=""
|
|
|
|
# - DATABASE_HOST
|
|
# -
|
|
# - Database Host
|
|
# -
|
|
# - Default: DATABASE_HOST="localhost"
|
|
# -
|
|
DATABASE_HOST="localhost"
|
|
|
|
# - Credentials to access Database
|
|
# -
|
|
DATABASE_USER=""
|
|
DATABASE_PASS=""
|
|
|
|
# - 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"
|
|
# -
|
|
# - Default: MYSQL_CREDENTIALS="--login-path=local"
|
|
#MYSQL_CREDENTIALS="--login-path=local"
|
|
|
|
|
|
# - 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 tasks notes richdocuments"
|