forked from puppetlabs/puppetdb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.sample.ini
60 lines (42 loc) · 1.39 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
# 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 logback config file
# logging-config = /path/to/logback.xml
[puppetdb]
# List of certificate names from which to allow incoming HTTPS requests:
# certificate-whitelist = /path/to/certname/whitelist
# Whether we should check for more recent PuppetDB versions. Defaults to 'false':
# disable-update-checking = true
[database]
classname = org.postgresql.Driver
subprotocol = postgresql
# Subname pattern: //host:port/databaseName
#subname = //localhost:5432/puppetdb
# 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
[nrepl]
# Set to true to enable the remote REPL
enabled = false
# What port the REPL should listen on
port = 8082
# IP address to listen on
host = 127.0.0.1