Skip to content
Snippets Groups Projects
Commit 89d4d0e8 authored by jurgenhaas's avatar jurgenhaas
Browse files

Update to 30.0.0

parent 0f3a36ae
No related branches found
No related tags found
No related merge requests found
---
nextcloud_version: 29.0.7
nextcloud_version: 30.0.0
nextcloud_mode: apache
nextcloud_plugins:
- announcementcenter
- audioplayer
- auto_groups
- bookmarks
- breezedark
- bruteforcesettings
- calendar
- circles
......@@ -28,7 +27,6 @@ nextcloud_plugins:
- group_everyone
- groupfolders
- guests
- health
- holiday_calendars
- impersonate
- integration_deepl
......@@ -41,7 +39,6 @@ nextcloud_plugins:
- integration_replicate
- keeweb
- mail
- news
- notes
- notify_push
- previewgenerator
......@@ -53,6 +50,7 @@ nextcloud_plugins:
- tables
- tasks
- twofactor_totp
- whiteboard
- workflow_script
nextcloud_pinned_plugin_versions: []
#groupfolders: '17.0.1'
......@@ -94,6 +92,10 @@ nextcloud_plugins_missing_26:
- ransomware_protection
- timetracker
- webapppassword
nextcloud_plugins_missing_30:
- breezedark
- health
- news
nextcloud_patches: []
nextcloud_patches_off:
- id: 45093
......
......@@ -394,6 +394,17 @@
- deploy
- plugins
- name: Expensive repairs
command: '{{ php_command }} ./occ maintenance:repair --include-expensive --no-interaction --no-warnings'
args:
chdir: '{{ php_command_path }}'
become_user: '{{ php_command_user }}'
ignore_errors: yes
when: installed
tags:
- deploy
- plugins
- name: Configure Spreed
include_tasks: spreed.yml
when: nextcloud_mode == 'apache' and nextcloud.spreed is defined
......
......@@ -24,7 +24,7 @@ services:
- ./dbbackup:/var/backups/mysql
php:
image: 'wodby/php:8.1'
image: 'wodby/php:8.3'
restart: unless-stopped
environment:
PHP_SENDMAIL_PATH: /usr/sbin/sendmail -t -i -S mailhog:1025
......@@ -62,11 +62,13 @@ services:
traefik.http.routers.apache-nextcloud_{{ nextcloud.id }}.rule: Host(`{{ nextcloud.domain }}`)
traefik.http.routers.apache-nextcloud_{{ nextcloud.id }}.tls: 'true'
traefik.http.routers.apache-nextcloud_{{ nextcloud.id }}.tls.certresolver: lakedrops
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-dav.replacepathregex.regex: ^/.well-known/ca(rd|l)dav
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-dav.replacepathregex.replacement: /remote.php/dav/
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-wellknown.replacepathregex.regex: ^(/.well-known.*)
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-wellknown.replacepathregex.replacement: /index.php$${1}
traefik.http.routers.apache-nextcloud_{{ nextcloud.id }}.middlewares: apache-nextcloud_{{ nextcloud.id }}-dav@docker,apache-nextcloud_{{ nextcloud.id }}-wellknown@docker,lakedropssts@docker
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect1.redirectregex.permanent: 'true'
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect1.redirectregex.regex: https?://([^/]*)/.well-known/(card|cal)dav
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect1.redirectregex.replacement: https://$${1}/remote.php/dav/
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect2.redirectregex.permanent: 'true'
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect2.redirectregex.regex: https?://([^/]*)(/.well-known[^#]*)
traefik.http.middlewares.apache-nextcloud_{{ nextcloud.id }}-redirect2.redirectregex.replacement: https://$${1}/index.php$${2}
traefik.http.routers.apache-nextcloud_{{ nextcloud.id }}.middlewares: apache-nextcloud_{{ nextcloud.id }}-redirect1@docker,apache-nextcloud_{{ nextcloud.id }}-redirect2@docker,lakedropssts@docker
redis:
image: 'wodby/redis:6'
volumes:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment