mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-08-27 05:55:15 +02:00
- Improved OIDC variable definitions (12_oidc.yml) - Added account/security/profile URLs - Restructured web-app-desktop tasks and JS handling - Introduced oidc.js and iframe.js with runtime loader - Fixed nginx.conf, LDAP, and healthcheck templates spacing - Improved Lua injection for CSP and snippets - Fixed typos (WordPress, receive, etc.) - Added silent-check-sso nginx location Conversation: https://chatgpt.com/share/68ae0060-4fac-800f-9f02-22592a4087d3
19 lines
1.3 KiB
YAML
19 lines
1.3 KiB
YAML
# General
|
|
application_id: "web-app-wordpress"
|
|
database_type: "mariadb"
|
|
host_msmtp_conf: "{{docker_compose.directories.config}}msmtprc.conf"
|
|
|
|
# WordPress Specific
|
|
wordpress_max_upload_size: "{{ applications | get_app_conf(application_id, 'max_upload_size') }}"
|
|
wordpress_custom_image: "wordpress_custom"
|
|
wordpress_docker_html_path: "/var/www/html"
|
|
wordpress_docker_conf_path: "{{ wordpress_config_path }}"
|
|
wordpress_version: "{{ applications | get_app_conf(application_id, 'docker.services.wordpress.version', True) }}"
|
|
wordpress_image: "{{ applications | get_app_conf(application_id, 'docker.services.wordpress.image', True) }}"
|
|
wordpress_container: "{{ applications | get_app_conf(application_id, 'docker.services.wordpress.name', True) }}"
|
|
wordpress_volume: "{{ applications | get_app_conf(application_id, 'docker.volumes.data', True) }}"
|
|
wordpress_domains: "{{ applications | get_app_conf(application_id, 'server.domains.canonical', True) }}"
|
|
wordpress_plugins: "{{ applications | get_app_conf(application_id, 'plugins', True) | dict2items }}"
|
|
wordpress_user: "www-data"
|
|
wordpress_config_file: "wp-config.php"
|
|
wordpress_config_path: "{{ wordpress_docker_html_path }}/{{ wordpress_config_file }}" |