settings.yml 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. # This file contains default values, and does not need to be edited. All
  2. # important settings can be changed from the admin interface.
  3. defaults: &defaults
  4. site_title: Mastodon
  5. site_short_description: ''
  6. site_description: ''
  7. site_extended_description: ''
  8. site_terms: ''
  9. site_contact_username: ''
  10. site_contact_email: ''
  11. registrations_mode: 'open'
  12. profile_directory: true
  13. closed_registrations_message: ''
  14. timeline_preview: true
  15. show_staff_badge: true
  16. preview_sensitive_media: false
  17. noindex: false
  18. theme: 'default'
  19. trends: true
  20. trends_as_landing_page: true
  21. trendable_by_default: false
  22. reserved_usernames:
  23. - admin
  24. - support
  25. - help
  26. - root
  27. - webmaster
  28. - administrator
  29. - mod
  30. - moderator
  31. disallowed_hashtags: # space separated string or list of hashtags without the hash
  32. bootstrap_timeline_accounts: ''
  33. activity_api_enabled: true
  34. peers_api_enabled: true
  35. show_domain_blocks: 'disabled'
  36. show_domain_blocks_rationale: 'disabled'
  37. require_invite_text: false
  38. backups_retention_period: 7
  39. captcha_enabled: false
  40. development:
  41. <<: *defaults
  42. test:
  43. <<: *defaults
  44. production:
  45. <<: *defaults