forked from coop-cloud/nextcloud
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 65b1090e54 | |||
| d6a9db3162 | |||
| c89109f7db |
@@ -102,6 +102,9 @@ DEFAULT_QUOTA="10 GB"
|
|||||||
# USER_OIDC_LOGIN_ONLY=false
|
# USER_OIDC_LOGIN_ONLY=false
|
||||||
# SECRET_USER_OIDC_SECRET_VERSION=v1
|
# SECRET_USER_OIDC_SECRET_VERSION=v1
|
||||||
|
|
||||||
|
# Image / PDF previews with Imaginary (see README)
|
||||||
|
#COMPOSE_FILE="$COMPOSE_FILE:compose.imaginary-preview.yml"
|
||||||
|
|
||||||
# HSTS Options
|
# HSTS Options
|
||||||
# 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
|
||||||
|
|||||||
@@ -120,20 +120,6 @@ To disable dashboard app (since it is so corporate):
|
|||||||
|
|
||||||
`abra app cmd <app-name> app run_occ '"app:disable dashboard"'`
|
`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
|
## 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
|
- 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
|
||||||
@@ -329,6 +315,20 @@ docker exec -u www-data $(docker ps -f name=foo_com_app -q) ./occ preview:pre-ge
|
|||||||
|
|
||||||
This app will improve performance of image browsing at the cost of storage space.
|
This app will improve performance of image browsing at the cost of storage space.
|
||||||
|
|
||||||
|
## Better image previews with `imaginary`
|
||||||
|
|
||||||
|
1. Run `abra app config <domain>` and uncomment the line `#COMPOSE_FILE="$COMPOSE_FILE:compose.imaginary-preview.yml"`.
|
||||||
|
2. Re-deploy the app (`abra app deploy <domain> --force`)
|
||||||
|
3. Edit `/var/www/config/config.php` and add:
|
||||||
|
|
||||||
|
```
|
||||||
|
'enabledPreviewProviders' =>
|
||||||
|
array (
|
||||||
|
0 => 'OC\\Preview\\Imaginary',
|
||||||
|
),
|
||||||
|
'preview_imaginary_url' => 'http://imaginary:9000',
|
||||||
|
```
|
||||||
|
|
||||||
## Fulltextsearch using elasticsearch
|
## Fulltextsearch using elasticsearch
|
||||||
|
|
||||||
1. Uncomment the following lines in your env file:
|
1. Uncomment the following lines in your env file:
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ version: "3.8"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
elasticsearch:
|
elasticsearch:
|
||||||
image: "docker.elastic.co/elasticsearch/elasticsearch:9.3.4"
|
image: "docker.elastic.co/elasticsearch/elasticsearch:8.17.2"
|
||||||
environment:
|
environment:
|
||||||
- cluster.name=docker-cluster
|
- cluster.name=docker-cluster
|
||||||
- bootstrap.memory_lock=true
|
- bootstrap.memory_lock=true
|
||||||
@@ -29,7 +29,7 @@ services:
|
|||||||
mode: 0600
|
mode: 0600
|
||||||
|
|
||||||
searchindexer:
|
searchindexer:
|
||||||
image: nextcloud:33.0.3-fpm
|
image: nextcloud:32.0.3-fpm
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud:/var/www/html/
|
- nextcloud:/var/www/html/
|
||||||
- nextapps:/var/www/html/custom_apps:cached
|
- nextapps:/var/www/html/custom_apps:cached
|
||||||
|
|||||||
@@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
version: '3.8'
|
||||||
|
services:
|
||||||
|
imaginary:
|
||||||
|
image: nextcloud/aio-imaginary:20250822_112758
|
||||||
|
environment:
|
||||||
|
- PORT=9000
|
||||||
|
command: -concurrency 50 -enable-url-source -log-level debug
|
||||||
|
networks:
|
||||||
|
- internal
|
||||||
@@ -10,7 +10,7 @@ services:
|
|||||||
- NEXTCLOUD_UPDATE=1
|
- NEXTCLOUD_UPDATE=1
|
||||||
|
|
||||||
db:
|
db:
|
||||||
image: "postgres:18"
|
image: "postgres:13"
|
||||||
command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}"
|
command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}"
|
||||||
volumes:
|
volumes:
|
||||||
- "postgres:/var/lib/postgresql/data"
|
- "postgres:/var/lib/postgresql/data"
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ services:
|
|||||||
- whiteboard_jwt
|
- whiteboard_jwt
|
||||||
|
|
||||||
whiteboard:
|
whiteboard:
|
||||||
image: ghcr.io/nextcloud-releases/whiteboard:v1.5.7
|
image: ghcr.io/nextcloud-releases/whiteboard:v1.5.0
|
||||||
deploy:
|
deploy:
|
||||||
labels:
|
labels:
|
||||||
- traefik.enable=true
|
- traefik.enable=true
|
||||||
|
|||||||
+4
-4
@@ -1,7 +1,7 @@
|
|||||||
version: "3.8"
|
version: "3.8"
|
||||||
services:
|
services:
|
||||||
web:
|
web:
|
||||||
image: nginx:1.30.0
|
image: nginx:1.29.4
|
||||||
depends_on:
|
depends_on:
|
||||||
- app
|
- app
|
||||||
configs:
|
configs:
|
||||||
@@ -48,7 +48,7 @@ services:
|
|||||||
start_period: 5m
|
start_period: 5m
|
||||||
|
|
||||||
app:
|
app:
|
||||||
image: nextcloud:33.0.3-fpm
|
image: nextcloud:32.0.3-fpm
|
||||||
depends_on:
|
depends_on:
|
||||||
- db
|
- db
|
||||||
configs:
|
configs:
|
||||||
@@ -109,7 +109,7 @@ services:
|
|||||||
start_period: 15m
|
start_period: 15m
|
||||||
|
|
||||||
cron:
|
cron:
|
||||||
image: nextcloud:33.0.3-fpm
|
image: nextcloud:32.0.3-fpm
|
||||||
volumes:
|
volumes:
|
||||||
- nextcloud:/var/www/html/
|
- nextcloud:/var/www/html/
|
||||||
- nextapps:/var/www/html/custom_apps:cached
|
- nextapps:/var/www/html/custom_apps:cached
|
||||||
@@ -125,7 +125,7 @@ services:
|
|||||||
|
|
||||||
|
|
||||||
cache:
|
cache:
|
||||||
image: redis:8.6.2-alpine
|
image: redis:8.4.0-alpine
|
||||||
networks:
|
networks:
|
||||||
- internal
|
- internal
|
||||||
volumes:
|
volumes:
|
||||||
|
|||||||
Reference in New Issue
Block a user