Initial commit
This commit is contained in:
commit
e02fdeffe3
7
.gitignore
vendored
Normal file
7
.gitignore
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
BAK/*
|
||||
.*.swp
|
||||
*.tar.bz2
|
||||
*.tar.gz
|
||||
/nextcloud*
|
||||
/log_*
|
||||
/conf/*.conf
|
109
conf/install_nextcloud.conf.sample
Normal file
109
conf/install_nextcloud.conf.sample
Normal file
@ -0,0 +1,109 @@
|
||||
# ---
|
||||
# - Configuration file for script 'update_nextcloud.sh'
|
||||
# ---
|
||||
|
||||
|
||||
# - 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"
|
||||
|
||||
|
||||
# - 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"
|
3093
install_nextcloud.sh
Executable file
3093
install_nextcloud.sh
Executable file
File diff suppressed because it is too large
Load Diff
Loading…
Reference in New Issue
Block a user