bloat.conf 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Format:
  2. # - Lines starting with a '#' are ignored
  3. # - Key and Value are separated by a single '='
  4. # - Leading and trailing white spaces in Key and Value are ignored
  5. # - Quoting and multi-line values are not supported
  6. # Address to listen to. Value can be of "HOSTNAME:PORT" or "IP:PORT" form. In
  7. # case of empty HOSTNAME or IP, "0.0.0.0:PORT" is used.
  8. # Example: ":8080", "bloat.mydomain.com"
  9. listen_address=127.0.0.1:8080
  10. # Full URL of the website. Users will be redirected to this URL after
  11. # authentication.
  12. # Example: "http://localhost:8080", "https://bloat.mydomain.com"
  13. client_website=http://127.0.0.1:8080
  14. # Name of the client.
  15. client_name=custom bloat
  16. # Mastadon scopes used by the client.
  17. # See https://docs.joinmastodon.org/api/oauth-scopes/
  18. client_scope=read write follow
  19. # Path of directory containing template files.
  20. templates_path=templates
  21. # Path of directory containing static files (CSS and JS).
  22. static_directory=static
  23. # Supported post formats. Value is a list of key:value pair separated by a ','.
  24. # Empty value will disable the format selection in frontend.
  25. post_formats=PlainText:text/plain,HTML:text/html,Markdown:text/markdown,BBCode:text/bbcode
  26. # In single instance mode, bloat will not ask for instance domain name and
  27. # user will be directly redirected to login form. User login from other
  28. # instances is not allowed in this mode.
  29. # Empty value disables single instance mode.
  30. # single_instance=pl.mydomain.com
  31. # Path to custom CSS. Value can be a file path relative to the static directory.
  32. # custom_css=custom.css