forked from mastodon/mastodon-ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.yml
76 lines (68 loc) · 1.56 KB
/
variables.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Mastodon setup
local_domain: mastodon.local
local_https: false
# web_domain: mastodon.example.com
# alternate_domains: example1.com,example2.com
# single_user_mode: true
default_locale: en
# paperclip_root_path: /var/lib/mastodon/public-system
# paperclip_root_url: /system
# prepared_statements: false
# Redis
redis_host: localhost
redis_port: 6379
redis_pass: CHANGEME
# Postgres
db_host: /var/run/postgresql
db_user: mastodon
db_name: mastodon
db_pass: CHANGEME
db_port: 5432
# Secrets
paperclip_secret: CHANGEME
secret_key_base: CHANGEME
otp_secret: CHANGEME
vapid_private_key: CHANGEME
vapid_public_key: CHANGEME
# Email
# email_domain_blacklist: example1.com|example2.de|etc
# email_domain_whitelist: example1.com|example2.de|etc
smtp_server: localhost
smtp_port: 587
smtp_login: ""
smtp_password: ""
smtp_from_address: [email protected]
# smtp_domain:
# smtp_delivery_method: smtp
# smtp_auth_method: plain
# smtp_ca_file: /etc/ssl/certs/ca-certificates.crt
# smtp_openssl_verify_mode: peer
# smtp_enable_starttls_auto: true
# smtp_tls: true
# CDN
# cdn_host: https://assets.example.com
# s3_cloudfront_host:
# S3
s3_enabled: false
# s3_bucket:
# aws_access_key_id:
# aws_secret_access_key:
# s3_region:
# s3_protocol: https
# s3_hostname: 192.168.1.123:9000
# s3_endpoint:
# s3_signature_version:
swift_enabled: false
# swift_username:
# swift_tenant:
# swift_password:
# swift_auth_url:
# swift_container:
# swift_object_url:
# swift_region:
# swift_domain_name:
# swift_cache_ttl:
# Streaming API
# streaming_api_base_url:
# streaming_cluster_num: 1
# vim: ft=yaml