Advertisement
jensens

Untitled

Mar 3rd, 2016
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. [buildout]
  2.  
  3. extends =
  4. etc/base.cfg
  5. etc/global-versions.cfg
  6.  
  7. [db]
  8. project = myprojectname
  9. password = override-in-buildout.cfg
  10.  
  11. [instance]
  12. http-address = 0.0.0.0:20021
  13. zserver-threads = 4
  14. effective-user = kup
  15. debug-mode = off
  16. verbose-security = off
  17. deprecation-warnings = off
  18. event-log-max-size = 50mb
  19. event-log-old-files = 2
  20. z2-log-level = CRITICAL
  21. http-fast-listen = off
  22. http-force-connection-close = on
  23. zeo-client = false
  24.  
  25. eggs +=
  26. pylibmc
  27. psycopg2
  28. RelStorage
  29.  
  30. rel-storage =
  31. type postgresql
  32. dbname kup_db_${db:project}
  33. user kup_${db:project}
  34. host zen
  35. password ${db:password}
  36. blob-dir /opt/blob_data/kup/${db:project}
  37. cache-servers 127.0.0.1:11211
  38.  
  39. [versions]
  40. RelStorage = 1.5.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement