mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-09-09 19:57:16 +02:00
feat(web-app-magento): add Magento role + network/ports
- add role files (docs, vars, config, tasks, schema, templates) - networks: add web-app-magento 192.168.103.208/28 - ports: add localhost http 8052 Conversation: https://chatgpt.com/share/68b8820f-f864-800f-8819-da509b99cee2
This commit is contained in:
37
roles/web-app-magento/config/main.yml
Normal file
37
roles/web-app-magento/config/main.yml
Normal file
@@ -0,0 +1,37 @@
|
||||
features:
|
||||
matomo: true
|
||||
css: true
|
||||
desktop: true
|
||||
central_database: true # Use platform DB (recommended). If false, app-local DB container is enabled.
|
||||
oidc: false # Magento SSO via OIDC requires extensions; not wired by default
|
||||
logout: true
|
||||
ldap: false
|
||||
|
||||
server:
|
||||
csp:
|
||||
whitelist: {}
|
||||
domains:
|
||||
canonical:
|
||||
- "shop.{{ PRIMARY_DOMAIN }}"
|
||||
aliases:
|
||||
- "magento.{{ PRIMARY_DOMAIN }}"
|
||||
|
||||
docker:
|
||||
services:
|
||||
application:
|
||||
image: "bitnami/magento"
|
||||
version: "latest"
|
||||
name: "magento"
|
||||
backup:
|
||||
no_stop_required: true
|
||||
database:
|
||||
enabled: true # Central DB recommended; if disabled, app-local DB is created
|
||||
redis:
|
||||
enabled: true
|
||||
search:
|
||||
enabled: true
|
||||
image: "opensearchproject/opensearch"
|
||||
version: "latest"
|
||||
name: "magento-opensearch"
|
||||
volumes:
|
||||
data: "magento_data"
|
Reference in New Issue
Block a user