132 lines
2.7 KiB
Plaintext
132 lines
2.7 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=
|
|
|
|
|
|
# - VHOST_CONFIG_FILE
|
|
# -
|
|
# - Vhost configuration file
|
|
# -
|
|
# - The script will determin the vhost configuration file by trying
|
|
# - the following pathes:
|
|
# - - /usr/local/apache2/conf/vhosts/${WEBSITE}.conf.php-fpm
|
|
# - - /usr/local/apache2/conf/vhosts/${WEBSITE}.conf
|
|
# - - /etc/apache2/sites-enabled/${WEBSITE}.conf
|
|
# -
|
|
#VHOST_CONFIG_FILE=""
|
|
|
|
|
|
# - 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
|
|
# -
|
|
# - only needed, if PHP_ENGINE ist set to 'FPM'
|
|
# -
|
|
# - The script tries to determin the PHP version (in case of PHP_ENGINE=FPM)
|
|
# -
|
|
# - Examples:
|
|
# - PHP_VERSION=5.6
|
|
# - PHP_VERSION=7.1
|
|
# -
|
|
#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_CREDENTIALS="--login-path=local"
|
|
# - MYSQL_CREDENTIALS="--defaults-file=/etc/mysql/debian.cnf" (Debian default)
|
|
# - MYSQL_CREDENTIALS="--defaults-file=/usr/local/mysql/sys-maint.cnf"
|
|
# - MYSQL_CREDENTIALS="-S/run/mysqld/mysqld.sock"
|
|
# -
|
|
MYSQL_CREDENTIALS="--login-path=local"
|
|
|
|
|
|
# - Credentials to access PostgreSQL Database
|
|
# -
|
|
PSQL_USER=
|
|
PSQL_PASS=
|
|
|
|
# - PostgreSQL Server
|
|
# -
|
|
# - defaults to 'localhost'
|
|
# -
|
|
PSQL_SERVER=
|
|
|
|
|
|
# - WOPI_URL
|
|
# -
|
|
# - URL to connect ColaboraOnline service
|
|
# -
|
|
# - Example:
|
|
# - WOPI_URL="https://office-cl.oopen.de"
|
|
# -
|
|
#WOPI_URL=""
|