mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-05-18 10:40:33 +02:00
40 lines
2.0 KiB
YAML
40 lines
2.0 KiB
YAML
# Adapt the values in your inventory file
|
|
defaults_service_provider:
|
|
type: "legal" # Accepted Values: natural, legal
|
|
company:
|
|
titel: "CyMaIS GbR"
|
|
slogan: "CyMaIS — Empowering a Sovereign Digital Future."
|
|
address:
|
|
street: "Binary Avenue 01"
|
|
city: "Cybertown"
|
|
postal_code: "00001"
|
|
country: "Nexusland"
|
|
logo: "{{ applications.assets_server.url | safe_var | safe_join('logo.png') }}"
|
|
platform:
|
|
titel: "CyMaIS Demo"
|
|
subtitel: "The Future of Self-Hosted Infrastructure. Secure. Automated. Sovereign."
|
|
logo: "{{ applications.assets_server.url | safe_var | safe_join('logo.png') }}"
|
|
favicon: "{{ applications.assets_server.url | safe_var | safe_join('favicon.ico') }}"
|
|
contact:
|
|
bluesky: >-
|
|
{{ ('@' ~ users.administrator.username ~ '.' ~ domains[application_id]['api'])
|
|
if 'bluesky' in group_names else '' }}
|
|
email: "contact@{{ primary_domain }}"
|
|
mastodon: "{{ '@' ~ users.administrator.username ~ '@' ~ domains.mastodon if 'mastodon' in group_names else '' }}"
|
|
matrix: "{{ '@' ~ users.administrator.username ~ ':' ~ domains.matrix.synapse if 'matrix' in group_names else '' }}"
|
|
peertube: "{{ '@' ~ users.administrator.username ~ '@' ~ domains.peertube[0] if 'peertube' in group_names else '' }}"
|
|
pixelfed: "{{ '@' ~ users.administrator.username ~ '@' ~ domains.pixelfed if 'pixelfed' in group_names else '' }}"
|
|
phone: "+0 000 000 404"
|
|
wordpress: "{{ '@' ~ users.administrator.username ~ '@' ~ domains.wordpress[0] if 'wordpress' in group_names else '' }}"
|
|
|
|
legal:
|
|
editorial_responsible: "Johannes Gutenberg"
|
|
source_code: "https://github.com/kevinveenbirkenbach/cymais"
|
|
imprint: >-
|
|
{{ "{protocol}://{domain}/imprint.html"
|
|
| safe_placeholders({
|
|
'protocol': web_protocol,
|
|
'domain': domains.html_server
|
|
})
|
|
}}
|