Advertisement
Guest User

Untitled

a guest
Jun 30th, 2016
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. # See README.md for more thorough explanations of each section and
  2. # option.
  3.  
  4. [global]
  5. # Store mq/db data in a custom directory
  6. vardir = /home/wyatt/work/puppetdb-mq-tmp
  7.  
  8. # Use an external log4j config file
  9. logging-config = /home/wyatt/.puppet/logback.xml
  10. #logging-config = /home/wyatt/work/puppetdb/resources/log4j.properties
  11.  
  12. [developer]
  13. pretty-print=true
  14.  
  15. [database]
  16. # For the embedded DB: org.hsqldb.jdbcDriver
  17. # For PostgreSQL: org.postgresql.Driver
  18. # Defaults to embedded DB
  19. classname = org.postgresql.Driver
  20.  
  21. # For the embedded DB: hsqldb
  22. # For PostgreSQL: postgresql
  23. # Defaults to embedded DB
  24. subprotocol = postgresql
  25.  
  26. # For the embedded DB: file:/path/to/database;hsqldb.tx=mvcc;sql.syntax_pgs=true
  27. # For PostgreSQL: //host:port/databaseName
  28. # Defaults to embedded DB located in <vardir>/db
  29. subname = //localhost:5432/puppetdb
  30.  
  31. # Connect as a specific user
  32. username = puppetdb
  33. #
  34. ## Use a specific password
  35. password = puppetdb
  36.  
  37. # How often (in minutes) to compact the database
  38. gc-interval = 60
  39. node-ttl = 1000d
  40. node-purge-ttl = 1000d
  41. report-ttl = 1000d
  42. #statements-cache-size = 0
  43.  
  44. [command-processing]
  45. # How many command-processing threads to use, defaults to (CPUs / 2)
  46. threads = 8
  47.  
  48. # Maximum amount of disk space (in MB) to allow for ActiveMQ persistent message storage
  49. # store-usage = 102400
  50.  
  51. # Maximum amount of disk space (in MB) to allow for ActiveMQ temporary message storage
  52. # temp-usage = 51200
  53.  
  54. [nrepl]
  55. # Set to true to enable the remote REPL
  56. enabled = true
  57.  
  58. # Either nrepl or swank or telnet
  59. type = nrepl
  60.  
  61. # What port the REPL should listen on
  62. port = 8082
  63.  
  64. [jetty]
  65. # What host to listen on, defaults to binding to 'localhost'
  66. host = 127.0.0.1
  67.  
  68. max-threads=500
  69.  
  70. # What port to listen on
  71. port = 8080
  72.  
  73. ssl-host = 0.0.0.0
  74. ssl-port = 8081
  75.  
  76. # Original settings
  77. ssl-ca-cert = /home/wyatt/.puppet/ssl/certs/ca.pem
  78. ssl-cert = /home/wyatt/.puppet/ssl/certs/desktop.localdomain.pem
  79. ssl-key = /home/wyatt/.puppet/ssl/private_keys/desktop.localdomain.pem
  80. #certificate-whitelist = /home/wyatt/.puppet/cert_whitelist.txt
  81.  
  82. access-log-config = /home/wyatt/.puppet/access-logging.xml
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement