mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-12-07 18:05:09 +00:00
This commit adds dynamic upload size configuration (upload_max_filesize + post_max_size), introduces a dedicated php-upload.ini template, mounts it through Docker Compose, renumbers all task files consistently, updates main.yml flow, and overrides client_max_body_size inside the logout role. Improves clarity, consistency, and brings Joomla in line with other IN roles. See: https://chatgpt.com/share/6927075c-4de0-800f-bcee-b1f5193e4a99
36 lines
895 B
YAML
36 lines
895 B
YAML
autocreate_users: true # Autocreate LDAP users on Login
|
|
features:
|
|
matomo: true
|
|
css: true
|
|
desktop: true
|
|
central_database: true
|
|
logout: true
|
|
ldap: false # There is no working free open source LDAP solution 2025-08-28
|
|
oidc: false # There is no working free open source OIDC solution 2025-08-28
|
|
server:
|
|
domains:
|
|
canonical:
|
|
- "joomla.cms.{{ PRIMARY_DOMAIN }}"
|
|
aliases: []
|
|
csp:
|
|
flags:
|
|
style-src-attr:
|
|
unsafe-inline: true
|
|
script-src-elem:
|
|
unsafe-inline: true
|
|
docker:
|
|
services:
|
|
database:
|
|
enabled: true
|
|
joomla:
|
|
image: joomla
|
|
version: latest
|
|
name: joomla
|
|
backup:
|
|
no_stop_required: true
|
|
upload:
|
|
# MB Integer for upload size
|
|
size_mb: 100
|
|
volumes:
|
|
data: "joomla_data"
|