mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-07 13:48:00 +00:00
- networks: add web-app-drupal subnet 192.168.104.80/28 - ports: map localhost http port 8060 - add role files: tasks, vars, schema, users, templates (Dockerfile, docker-compose, settings.local.php, upload.ini) - add docs: README.md and Administration.md Ref: https://chatgpt.com/share/690535c5-b55c-800f-8556-5335a6b8a33f
38 lines
829 B
YAML
38 lines
829 B
YAML
title: "Site"
|
|
max_upload_size: "256M"
|
|
features:
|
|
matomo: true
|
|
css: false
|
|
desktop: true
|
|
oidc: true
|
|
central_database: true
|
|
logout: true
|
|
server:
|
|
csp:
|
|
flags: {}
|
|
whitelist: {}
|
|
domains:
|
|
canonical:
|
|
- "drupal.{{ PRIMARY_DOMAIN }}"
|
|
aliases: []
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
drupal:
|
|
version: latest
|
|
image: drupal
|
|
name: drupal
|
|
backup:
|
|
no_stop_required: true
|
|
volumes:
|
|
data: drupal_data
|
|
rbac:
|
|
roles:
|
|
authenticated:
|
|
description: "Logged-in user"
|
|
content_editor:
|
|
description: "Can create and edit content"
|
|
site_admin:
|
|
description: "Full site administration"
|