forked from coop-cloud/nextcloud
chore: publish 12.0.1+31.0.6-fpm release
This commit is contained in:
@ -55,6 +55,12 @@ DEFAULT_QUOTA="10 GB"
|
|||||||
# APPS="calendar"
|
# APPS="calendar"
|
||||||
|
|
||||||
# COLLABORA_URL=https://collabora.example.com
|
# COLLABORA_URL=https://collabora.example.com
|
||||||
|
## IMPORTANT FOR SECURITY REASONS WHEN RUNNING COLLABORA
|
||||||
|
## list of IP addresses that are allowed to make WOPI requests. Use the default
|
||||||
|
## when running the collabora server on the same machine as nextcloud.
|
||||||
|
## Otherwise set this to the IP address range of your collabora server(s) i.e. 1.2.3.4/32
|
||||||
|
## https://docs.nextcloud.com/server/latest/admin_manual/office/configuration.html#wopi-settings
|
||||||
|
# COLLABORA_ALLOWLIST="172.16.0.0/12"
|
||||||
|
|
||||||
# COMPOSE_FILE="$COMPOSE_FILE:compose.onlyoffice.yml"
|
# COMPOSE_FILE="$COMPOSE_FILE:compose.onlyoffice.yml"
|
||||||
# ONLYOFFICE_URL=https://onlyoffice.example.com
|
# ONLYOFFICE_URL=https://onlyoffice.example.com
|
||||||
@ -86,4 +92,4 @@ DEFAULT_QUOTA="10 GB"
|
|||||||
# Uncomment this line to enable HSTS: https://docs.nextcloud.com/server/30/admin_manual/installation/harden_server.html
|
# Uncomment this line to enable HSTS: https://docs.nextcloud.com/server/30/admin_manual/installation/harden_server.html
|
||||||
#HSTS_ENABLED=1
|
#HSTS_ENABLED=1
|
||||||
# Uncomment this line to add the `preload` part
|
# Uncomment this line to add the `preload` part
|
||||||
#HSTS_PRELOAD=1
|
#HSTS_PRELOAD=1
|
||||||
|
|||||||
5
abra.sh
5
abra.sh
@ -92,6 +92,9 @@ install_onlyoffice() {
|
|||||||
install_collabora() {
|
install_collabora() {
|
||||||
install_apps richdocuments
|
install_apps richdocuments
|
||||||
set_app_config richdocuments wopi_url "$COLLABORA_URL"
|
set_app_config richdocuments wopi_url "$COLLABORA_URL"
|
||||||
|
# important for security reaosns
|
||||||
|
# https://docs.nextcloud.com/server/latest/admin_manual/office/configuration.html#wopi-settings
|
||||||
|
set_app_config richdocuments wopi_allowlist "$COLLABORA_ALLOWLIST"
|
||||||
}
|
}
|
||||||
|
|
||||||
install_whiteboard() {
|
install_whiteboard() {
|
||||||
@ -169,4 +172,4 @@ set_windowsfriendly_filenames() {
|
|||||||
|
|
||||||
upgrade_mariadb() {
|
upgrade_mariadb() {
|
||||||
mariadb-upgrade -p`cat /run/secrets/db_root_password`
|
mariadb-upgrade -p`cat /run/secrets/db_root_password`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user