forked from puppetlabs/puppetdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.ini
61 lines (45 loc) · 1.5 KB
/
config.sample.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# See README.md for more thorough explanations of each section and
# option.
[global]
# Store mq/db data in a custom directory
vardir = /var/lib/puppetdb
# Use an external log4j config file
# logging-config = /path/to/log4j.properties
[database]
# For the embedded DB: org.hsqldb.jdbcDriver
# For PostgreSQL: org.postgresql.Driver
# Defaults to embedded DB
classname = org.hsqldb.jdbcDriver
# For the embedded DB: hsqldb
# For PostgreSQL: postgresql
# Defaults to embedded DB
subprotocol = hsqldb
# For the embedded DB: file:/path/to/database;hsqldb.tx=mvcc;sql.syntax_pgs=true
# For PostgreSQL: //host:port/databaseName
# Defaults to embedded DB located in <vardir>/db
subname = file:/var/lib/puppetdb/db/db;hsqldb.tx=mvcc;sql.syntax_pgs=true
# Connect as a specific user
# username = foobar
# Use a specific password
# password = foobar
# How often (in minutes) to compact the database
# gc-interval = 60
[command-processing]
# How many command-processing threads to use, defaults to (CPUs / 2)
# threads = 4
# Maximum amount of disk space (in MB) to allow for ActiveMQ persistent message storage
# store-usage = 102400
# Maximum amount of disk space (in MB) to allow for ActiveMQ temporary message storage
# temp-usage = 51200
[jetty]
# What host to listen on, defaults to binding to 'localhost'
# host = foo.my.net
# What port to listen on
port = 8080
[repl]
# Set to true to enable the remote REPL
enabled = false
# Either nrepl or swank or telnet
type = nrepl
# What port the REPL should listen on
port = 8081