mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-17 15:56:04 +02:00
62 lines
1.3 KiB
YAML
62 lines
1.3 KiB
YAML
credentials: {}
|
|
docker:
|
|
services:
|
|
redis:
|
|
enabled: false
|
|
database:
|
|
enabled: true
|
|
type: postgres
|
|
xwiki:
|
|
image: xwiki
|
|
version: lts-<< defaults_applications[web-app-xwiki].docker.services.database.type >>-tomcat
|
|
name: xwiki
|
|
backup:
|
|
no_stop_required: true
|
|
volumes:
|
|
data: "xwiki_data"
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
desktop: true
|
|
central_database: true
|
|
logout: true
|
|
oidc: true
|
|
ldap: false # Just OIDC or LDAP can be enabled
|
|
server:
|
|
csp:
|
|
whitelist:
|
|
worker-src:
|
|
- "blob:"
|
|
flags:
|
|
script-src:
|
|
unsafe-eval: true
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
domains:
|
|
canonical:
|
|
- "x.wiki.{{ PRIMARY_DOMAIN }}"
|
|
rbac:
|
|
roles: {}
|
|
ldap:
|
|
local_enabled: true # Allows local login if LDAP is down
|
|
|
|
plugins:
|
|
oidc:
|
|
enabled: true
|
|
items:
|
|
- id: "org.xwiki.contrib.oidc:oidc-authenticator"
|
|
version: "2.19.2"
|
|
|
|
ldap:
|
|
enabled: false
|
|
items:
|
|
- id: "org.xwiki.contrib.ldap:ldap-authenticator"
|
|
version: "9.15.7"
|
|
|
|
# Example for Matomo
|
|
matomo:
|
|
enabled: false
|
|
items:
|
|
- id: "org.xwiki.contrib:matomo"
|
|
version: "1.0"
|