variables.yml 1.6 KB

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