bloat.conf 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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=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. # Log file. Will log to stdout if value is empty.
  27. # log_file=log
  28. # In single instance mode, bloat will not ask for instance domain name and
  29. # user will be directly redirected to login form. User login from other
  30. # instances is not allowed in this mode.
  31. # Empty value disables single instance mode.
  32. # single_instance=pl.mydomain.com
  33. # Path to custom CSS. Value can be a file path relative to the static directory.
  34. # or a URL starting with either "http://" or "https://".
  35. # custom_css=custom.css