ansible-roles/webapps/mastodon/defaults/main.yml

27 lines
1.1 KiB
YAML
Raw Normal View History

2022-12-23 16:00:00 +01:00
---
# defaults file for mastodon
system_dep: "['imagemagick', 'ffmpeg', 'libpq-dev', 'libxml2-dev', 'libxslt1-dev', 'file', 'git-core', 'g++', 'libprotobuf-dev', 'protobuf-compiler', 'pkg-config', 'nodejs', 'gcc', 'autoconf', 'bison', 'build-essential', 'libssl-dev', 'libyaml-dev', 'libreadline6-dev', 'zlib1g-dev', 'libncurses5-dev', 'libffi-dev', 'libgdbm-dev', 'nginx', 'redis-server', 'redis-tools', 'postgresql', 'postgresql-contrib', 'certbot', 'python3-certbot-nginx', 'libidn11-dev', 'libicu-dev', 'libjemalloc-dev', 'yarn']"
2023-01-06 16:48:56 +01:00
domains: ['example.somedomain.org']
2022-12-23 16:00:00 +01:00
git_url: 'https://github.com/mastodon/mastodon.git'
git_version: 'v4.0.2'
ruby_version: '3.0.4'
2023-01-06 16:48:56 +01:00
service: 'example'
2022-12-23 16:00:00 +01:00
db_host: 'localhost'
db_user: "{{ service }}"
db_name: "{{ service }}_production"
db_password: 'CHANGE_ME'
2023-01-06 16:48:56 +01:00
#puma_port: '3000'
#node_port: '4000'
2022-12-23 16:00:00 +01:00
app_secret_key_base: ""
app_otp_secret: ""
app_vapid_private_key: ""
app_vapid_public_key: ""
app_smtp_server: "127.0.0.1"
app_smtp_port: "25"
2023-01-06 16:48:56 +01:00
app_smtp_from_address: "example@somedomain.org"
2022-12-23 16:00:00 +01:00
app_smtp_auth_method: "none"
app_smtp_openssl_verify_mode: "none"
app_es_enabled: "false"