forked from coop-cloud/nextcloud
Compare commits
4
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d2560c9304
|
||
|
|
19e7fbb648 | ||
|
|
6113ccedde | ||
|
|
0d0c3b3266 |
@@ -107,3 +107,7 @@ DEFAULT_QUOTA="10 GB"
|
||||
#HSTS_ENABLED=1
|
||||
# Uncomment this line to add the `preload` part
|
||||
#HSTS_PRELOAD=1
|
||||
|
||||
# Metrics
|
||||
# COMPOSE_FILE="$COMPOSE_FILE:compose.metrics.yml"
|
||||
# SECRET_METRICS_TOKEN_VERSION=v1 # length=32 charset=hex
|
||||
@@ -120,20 +120,6 @@ To disable dashboard app (since it is so corporate):
|
||||
|
||||
`abra app cmd <app-name> app run_occ '"app:disable dashboard"'`
|
||||
|
||||
## Configuring system settings
|
||||
|
||||
All settings on [this page](https://docs.nextcloud.com/server/stable/admin_manual/configuration_server/index.html) can be configured using this command:
|
||||
|
||||
`abra app cmd <app-name> app set_system_config <config> '<value>'`
|
||||
|
||||
For example, this command sets the default language for new users to Danish:
|
||||
|
||||
`abra app cmd <app-name> app set_system_config default_language 'da'`
|
||||
|
||||
And, to avoid warnings about maintenance window, run this command ([read more here](https://docs.nextcloud.com/server/32/admin_manual/configuration_server/background_jobs_configuration.html)):
|
||||
|
||||
`abra app cmd <app-name> app set_system_config maintenance_window_start 1`
|
||||
|
||||
## Default user files
|
||||
|
||||
- Follow [these docs](https://docs.nextcloud.com/server/latest/admin_manual/configuration_files/default_files_configuration.html) to set the default files list for each user in the Files app
|
||||
@@ -142,6 +128,17 @@ And, to avoid warnings about maintenance window, run this command ([read more he
|
||||
|
||||
- Configure a `defaultapp` in your `config.php` or use [apporder](https://apps.nextcloud.com/apps/apporder)
|
||||
|
||||
## Metrics
|
||||
|
||||
There is a [metrics exporter](https://github.com/xperimental/nextcloud-exporter) that can be run as sidecar container, also part of the nextcloud helm charts. Its configured via alloys label-based auto-discovery provided by the updated [monitoring-stack](https://git.coopcloud.tech/coop-cloud/monitoring-ng)
|
||||
To enable, uncomment
|
||||
```
|
||||
COMPOSE_FILE="$COMPOSE_FILE:compose.metrics.yml"
|
||||
SECRET_METRICS_TOKEN_VERSION=v1 # length=32 charset=hex
|
||||
```
|
||||
then generate the secret with abra and run
|
||||
`abra app cmd <domain> app set_metrics_token`
|
||||
|
||||
## Upgrading Nextcloud
|
||||
Upgrading Nextcloud can be a hair raising experiance. They [don't support downgrading](https://docs.nextcloud.com/server/latest/admin_manual/maintenance/upgrade.html) even for minor versions.
|
||||
|
||||
|
||||
@@ -193,3 +193,7 @@ set_windowsfriendly_filenames() {
|
||||
upgrade_mariadb() {
|
||||
mariadb-upgrade -p`cat /run/secrets/db_root_password`
|
||||
}
|
||||
|
||||
set_metrics_token() {
|
||||
run_occ "config:app:set serverinfo token --value '$(cat /run/secrets/metrics_token)'"
|
||||
}
|
||||
@@ -2,7 +2,7 @@ version: "3.8"
|
||||
|
||||
services:
|
||||
elasticsearch:
|
||||
image: "docker.elastic.co/elasticsearch/elasticsearch:9.3.8"
|
||||
image: "docker.elastic.co/elasticsearch/elasticsearch:8.19.16"
|
||||
environment:
|
||||
- cluster.name=docker-cluster
|
||||
- bootstrap.memory_lock=true
|
||||
@@ -29,7 +29,7 @@ services:
|
||||
mode: 0600
|
||||
|
||||
searchindexer:
|
||||
image: nextcloud:33.0.7-fpm
|
||||
image: nextcloud:32.0.11-fpm
|
||||
volumes:
|
||||
- nextcloud:/var/www/html/
|
||||
- nextapps:/var/www/html/custom_apps:cached
|
||||
|
||||
@@ -0,0 +1,22 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
app:
|
||||
secrets:
|
||||
- metrics_token
|
||||
metrics:
|
||||
image: xperimental/nextcloud-exporter:0.9.0
|
||||
environment:
|
||||
- NEXTCLOUD_SERVER=https://$DOMAIN
|
||||
- NEXTCLOUD_AUTH_TOKEN=@/run/secrets/metrics_token
|
||||
secrets:
|
||||
- metrics_token
|
||||
networks:
|
||||
- proxy
|
||||
deploy:
|
||||
labels:
|
||||
- "prometheus.io/scrape=true"
|
||||
- "prometheus.io/port=9205"
|
||||
secrets:
|
||||
metrics_token:
|
||||
external: true
|
||||
name: ${STACK_NAME}_metrics_token_${SECRET_METRICS_TOKEN_VERSION}
|
||||
@@ -10,7 +10,7 @@ services:
|
||||
- NEXTCLOUD_UPDATE=1
|
||||
|
||||
db:
|
||||
image: "postgres:18"
|
||||
image: "pgautoupgrade/pgautoupgrade:14-debian"
|
||||
command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}"
|
||||
volumes:
|
||||
- "postgres:/var/lib/postgresql/data"
|
||||
|
||||
+5
-5
@@ -1,7 +1,7 @@
|
||||
version: "3.8"
|
||||
services:
|
||||
web:
|
||||
image: nginx:1.30.4
|
||||
image: nginx:1.31.1
|
||||
depends_on:
|
||||
- app
|
||||
configs:
|
||||
@@ -48,7 +48,7 @@ services:
|
||||
start_period: 5m
|
||||
|
||||
app:
|
||||
image: nextcloud:33.0.7-fpm
|
||||
image: nextcloud:32.0.11-fpm
|
||||
depends_on:
|
||||
- db
|
||||
configs:
|
||||
@@ -95,7 +95,7 @@ services:
|
||||
failure_action: rollback
|
||||
order: start-first
|
||||
labels:
|
||||
- "coop-cloud.${STACK_NAME}.version=13.0.1+32.0.3-fpm"
|
||||
- "coop-cloud.${STACK_NAME}.version=13.1.0+32.0.11-fpm"
|
||||
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
|
||||
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
|
||||
- "backupbot.backup.volumes.redis=false"
|
||||
@@ -109,7 +109,7 @@ services:
|
||||
start_period: 15m
|
||||
|
||||
cron:
|
||||
image: nextcloud:33.0.7-fpm
|
||||
image: nextcloud:32.0.11-fpm
|
||||
volumes:
|
||||
- nextcloud:/var/www/html/
|
||||
- nextapps:/var/www/html/custom_apps:cached
|
||||
@@ -125,7 +125,7 @@ services:
|
||||
|
||||
|
||||
cache:
|
||||
image: redis:8.6.5-alpine
|
||||
image: redis:8.8.0-alpine
|
||||
networks:
|
||||
- internal
|
||||
volumes:
|
||||
|
||||
@@ -0,0 +1,3 @@
|
||||
Important:
|
||||
Posgres: Due to end of support for postgres 13 we upgraded to pgautoupgrade-14-debian but we could not test it, so please take backups before the upgrade!
|
||||
Elastic Search: We chose the latest minor update for elasticsearch but we were also not able to test it.
|
||||
Reference in New Issue
Block a user