settings.yaml 869 B

1234567891011121314151617181920212223242526272829303132
  1. # This is a bunch of settings useful for the app
  2. defaults:
  3. # How many posts to show per page
  4. items_per_page: 50
  5. search_results_per_page: 50
  6. # How many topics to allow for a post
  7. topics_per_post: 10
  8. cookies:
  9. # A secret key for signing cookies. Must be kept private.
  10. # Used to verify that cookies haven't been tampered with.
  11. secret: "secret random string"
  12. sqlite:
  13. database: ./database.sqlite
  14. # Emails are sent using the local sendmail MTA.
  15. email:
  16. sendmail_path: /usr/sbin/sendmail
  17. from: "freepost <noreply@freepo.st>"
  18. session:
  19. # Name to use for the session cookie
  20. name: freepost
  21. # Timeout in seconds for the "remember me" option.
  22. # By default, if the user doesn't click "remember me" during login the
  23. # session will end when the browser is closed.
  24. # 2592000 = 30 days
  25. remember_me: 2592000