Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
430
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. ;basic database configuration for access to casebox database
  2. ;databases for cores can have specific database connection params
  3. [database]
  4. ;prefix used for database names, solr core and log files. "_" character is added a fter prefix automatically
  5. prefix = cb
  6.  
  7. db_host = 127.0.0.1
  8. db_port = 3306
  9. db_user = user
  10. db_pass = pass
  11.  
  12. [solr]
  13. solr_host = 127.0.0.1
  14. solr_port = 8983
  15.  
  16. [session]
  17. ;default session lifetime in minutes
  18. ;specify 0 for unlimited lifetime
  19. ;default is 3 days
  20. session.lifetime = 4320
  21.  
  22. ; session persistence
  23. ;
  24. ; For persistent session - the session id is not regenerated on each request.
  25. ; This way the user can open many instances (browser windows) of casebox at the sa me time.
  26. ;
  27. ; For non persistent session - the session id regenerates on any new request
  28. ; and paralel instances of casebox is not possible.
  29. ;session.persistent = true
  30.  
  31. [email]
  32. ;ADMIN_EMAIL: email adress used to notify admin on any casebox problems
  33. admin_email = your.email@server.com
  34.  
  35. ;SENDER_EMAIL: email adress placed in header for sent mails
  36. sender_email = emails.sender@server.com
  37.  
  38. [debug]
  39. debug_hosts = comma_separated_ip_list
  40.  
  41. [devel]
  42. ;_dev_mode = 0
  43. ;_dev_hosts = 127.0.0.1
  44. ;_dev_send_mails = 1
  45.  
  46. [comments]
  47. comments_email =
  48. comments_pass =
  49. comments_host =
  50. comments_port = 143
  51. comments_ssl =
  52.  
  53. [paths]
  54. PYTHON = python
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement