mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2025-11-03 11:48:13 +00:00
17 lines
903 B
YAML
17 lines
903 B
YAML
# General
|
|
application_id: "web-app-friendica"
|
|
database_type: "mariadb"
|
|
|
|
# Docker
|
|
docker_compose_flush_handlers: false
|
|
|
|
# Friendica
|
|
friendica_container: "friendica"
|
|
friendica_no_validation: "{{ applications | get_app_conf(application_id, 'features.oidc') }}" # Email validation is not neccessary if OIDC is active
|
|
friendica_application_base: "/var/www/html"
|
|
friendica_docker_ldap_config: "{{ [ friendica_application_base, 'config/ldapauth.config.php' ] | path_join }}"
|
|
friendica_host_ldap_config: "{{ [ docker_compose.directories.volumes, 'ldapauth.config.php' ] | path_join }}"
|
|
friendica_config_dir: "{{ [ friendica_application_base, 'config' ] | path_join }}"
|
|
friendica_config_file: "{{ [ friendica_config_dir, 'local.config.php' ] | path_join }}"
|
|
friendica_user: "www-data"
|