mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-28 07:28:31 +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
37 lines
824 B
YAML
37 lines
824 B
YAML
---
|
|
- name: "Include role sys-stk-front-proxy for {{ application_id }}"
|
|
include_role:
|
|
name: sys-stk-front-proxy
|
|
loop: "{{ JOOMLA_DOMAINS }}"
|
|
loop_control:
|
|
loop_var: domain
|
|
vars:
|
|
http_port: "{{ ports.localhost.http[application_id] }}"
|
|
|
|
- name: "load docker and db for {{ application_id }}"
|
|
include_role:
|
|
name: sys-stk-back-stateful
|
|
vars:
|
|
docker_compose_flush_handlers: false
|
|
|
|
- name: Include PHP Config tasks
|
|
include_tasks: 01_config.yml
|
|
|
|
- name: flush docker service
|
|
meta: flush_handlers
|
|
|
|
- name: Include install routines
|
|
include_tasks: "{{ item }}"
|
|
loop:
|
|
- 02_install.yml
|
|
- 03_debug.yml
|
|
- 04_patch.yml
|
|
|
|
- name: Include assert routines
|
|
include_tasks: "05_assert.yml"
|
|
when: MODE_ASSERT | bool
|
|
|
|
- name: Reset Admin Password
|
|
include_tasks: 06_reset_admin_password.yml
|
|
|