From 865e2f05621fc10f3d332d3840707997c0b94abf Mon Sep 17 00:00:00 2001 From: Stonewall Jackson Date: Mon, 12 Jun 2023 21:02:22 -0400 Subject: add mastodon role --- roles/mastodon/defaults/main.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 roles/mastodon/defaults/main.yml (limited to 'roles/mastodon/defaults') diff --git a/roles/mastodon/defaults/main.yml b/roles/mastodon/defaults/main.yml new file mode 100644 index 0000000..d9bab79 --- /dev/null +++ b/roles/mastodon/defaults/main.yml @@ -0,0 +1,23 @@ +mastodon_version: 4.1.2 + +mastodon_access_group: role-mastodon-access +mastodon_db_user: s-mastodon +# mastodon_db_password +mastodon_db_host: '{{ postgresql_host }}' +mastodon_db_name: mastodon +mastodon_ldap_host: '{{ freeipa_hosts | first }}' + +mastodon_domain: '{{ email_domain }}' +mastodon_web_domain: '{{ ansible_fqdn }}' +mastodon_email_from: 'mastodon-noreply@{{ email_domain }}' + +mastodon_default_locale: en + +mastodon_registrations: close + +mastodon_redis_port: 6379 +mastodon_web_port: 8008 +mastodon_streaming_port: 8009 + +mastodon_sysaccount_username: mastodon +#mastodon_sysaccount_password -- cgit