mirror of
				https://github.com/kevinveenbirkenbach/computer-playbook.git
				synced 2025-10-31 02:10:05 +00:00 
			
		
		
		
	BigBlueButton & Nextcloud:
- Switch to custom BBB Docker repository - Externalize Coturn and Collabora by default - Add dedicated 03_dependencies.yml for dependency handling - Improve env templating with lowercased feature flags - Add conditional healthcheck for Greenlight - Refactor TURN/STUN/relay handling with role variable _BBB_COTURN_ROLE - Extend Collabora/Greenlight dependency wiring in override file - Nextcloud Talk: refine vars and enable/disable logic with separate plugin/service flags, add network_mode support and conditional nginx proxy block Ref: https://chatgpt.com/share/68d741ff-a544-800f-9e81-a565e0bab0eb
This commit is contained in:
		| @@ -28,9 +28,9 @@ docker: | ||||
|     database: | ||||
|       enabled: true | ||||
|     nextcloud: | ||||
|       name:     "nextcloud" | ||||
|       image:    "nextcloud" | ||||
|       version:  "production-fpm-alpine" | ||||
|       name:               "nextcloud" | ||||
|       image:              "nextcloud" | ||||
|       version:            "production-fpm-alpine" | ||||
|       backup: | ||||
|         no_stop_required: true | ||||
|       cpus:               "2.0" | ||||
| @@ -38,27 +38,28 @@ docker: | ||||
|       mem_limit:          "3g" | ||||
|       pids_limit:         512 | ||||
|     proxy:  | ||||
|       name:     "nextcloud-proxy" | ||||
|       image:    "nginx" | ||||
|       version:  "alpine" | ||||
|       name:               "nextcloud-proxy" | ||||
|       image:              "nginx" | ||||
|       version:            "alpine" | ||||
|       backup: | ||||
|         no_stop_required: true | ||||
|     cron: | ||||
|       name:     "nextcloud-cron" | ||||
|       name:               "nextcloud-cron" | ||||
|     talk: | ||||
|       name:     "nextcloud-talk" | ||||
|       image:    "nextcloud/aio-talk" | ||||
|       version:  "latest" | ||||
|       name:               "nextcloud-talk" | ||||
|       image:              "nextcloud/aio-talk" | ||||
|       version:            "latest" | ||||
|       backup: | ||||
|         no_stop_required: false | ||||
|       internal: "{{ not 'web-svc-coturn' in group_names | lower }}" | ||||
|       internal:           false | ||||
|       network_mode:       host | ||||
|     whiteboard: | ||||
|       name:     "nextcloud-whiteboard" | ||||
|       image:    "ghcr.io/nextcloud-releases/whiteboard" | ||||
|       version:  "latest" | ||||
|       name:               "nextcloud-whiteboard" | ||||
|       image:              "ghcr.io/nextcloud-releases/whiteboard" | ||||
|       version:            "latest" | ||||
|       backup: | ||||
|         no_stop_required: true | ||||
|   enabled:  "{{ applications | get_app_conf('web-app-nextcloud', 'features.oidc', False, True) }}"   # Activate OIDC for Nextcloud | ||||
|   enabled:  "{{ applications | get_app_conf('web-app-nextcloud', 'features.oidc', False) }}"   # Activate OIDC for Nextcloud | ||||
|   # floavor decides which OICD plugin should be used.  | ||||
|   # Available options: oidc_login, sociallogin | ||||
|   # @see https://apps.nextcloud.com/apps/oidc_login | ||||
|   | ||||
		Reference in New Issue
	
	Block a user