mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-29 23:08:06 +02:00
config/main.yml: convert oidc from empty mapping to block; indent flavor under oidc; enable javascript feature. tasks/main.yml: use path_join for taiga settings; create docker-compose-inits via TAIGA_DOCKER_COMPOSE_INIT_PATH; flush handlers; add idempotent createsuperuser via taiga-manage with async/poll and masked logs. templates/docker-compose-inits.yml.j2: include compose/container base to inherit env and project settings. templates/env.j2: quote WEB_PROTOCOL and WEBSOCKET_PROTOCOL. templates/javascript.js.j2: add SSO warning include. users/main.yml: add administrator email stub. vars/main.yml: add js_application_name; restructure OIDC flavor flags; add compose PATH vars; expose TAIGA_SUPERUSER_* vars. Chat reference: https://chatgpt.com/share/68af7637-225c-800f-b670-2b948f5dea54
35 lines
846 B
YAML
35 lines
846 B
YAML
oidc:
|
|
# Taiga doesn't have a functioning oidc support at the moment
|
|
# See
|
|
# - https://community.taiga.io/t/taiga-and-oidc-plugin/4866
|
|
#
|
|
# Due to this reason this plutin is deactivated atm
|
|
flavor: 'taigaio' # Potential flavors: robrotheram, taigaio
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
desktop: true
|
|
oidc: false
|
|
central_database: true
|
|
logout: true
|
|
javascript: true
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
taiga:
|
|
version: "latest"
|
|
server:
|
|
csp:
|
|
flags:
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
unsafe-eval: true
|
|
style-src:
|
|
unsafe-inline: true
|
|
script-src:
|
|
unsafe-eval: true
|
|
domains:
|
|
canonical:
|
|
- "kanban.{{ PRIMARY_DOMAIN }}"
|