settings.ini 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # This is a bunch of settings useful for configuring this DOKK isntance.
  2. [dokk]
  3. archive = /srv/dokk-archive
  4. # Use this path for all routes used by this instace. For example if
  5. # reserved_path=/dokk the signin form will be at /dokk/sigin
  6. # All other paths are available to users for topics, eg. /Colosseum
  7. reserved_path = /dokk/instance
  8. [sparql]
  9. # Install Fuseki as described in the README, then change the server hostname
  10. # below as appropriate.
  11. instance_query = http://localhost:3030/instance/query
  12. instance_update = http://localhost:3030/instance/update
  13. graph_query = http://localhost:3030/graph/query
  14. graph_update = http://localhost:3030/graph/update
  15. public_query = http://localhost:3030/public/query
  16. [session]
  17. # Name to use for the session cookie
  18. name = dokk
  19. # Timeout in seconds for the "remember me" option.
  20. # By default, if the user doesn't click "remember me" during login the
  21. # session will end when the browser is closed.
  22. # 2592000 = 30 days
  23. remember_me = 2592000
  24. [cookies]
  25. # A secret key for signing cookies. Must be kept private.
  26. # Used to verify that cookies haven't been tampered with.
  27. secret = "secret random string"