38 lines
1.3 KiB
Plaintext
38 lines
1.3 KiB
Plaintext
###############################################################################
|
|
######### File created by Puppet - manual changes will be overwritten #########
|
|
###############################################################################
|
|
|
|
[jetty]
|
|
# IP address or hostname to listen for clear-text HTTP. To avoid resolution
|
|
# issues, IP addresses are recommended over hostnames.
|
|
# Default is `localhost`.
|
|
# host = <host>
|
|
|
|
# Port to listen on for clear-text HTTP.
|
|
port = <%= @pt_http_port %>
|
|
|
|
# The following are SSL specific settings. They can be configured
|
|
# automatically with the tool `puppetdb ssl-setup`, which is normally
|
|
# ran during package installation.
|
|
|
|
# IP address to listen on for HTTPS connections. Hostnames can also be used
|
|
# but are not recommended to avoid DNS resolution issues. To listen on all
|
|
# interfaces, use `0.0.0.0`.
|
|
ssl-host = 0.0.0.0
|
|
|
|
# The port to listen on for HTTPS connections
|
|
ssl-port = <%= @pt_https_port %>
|
|
|
|
# Private key path
|
|
ssl-key = /etc/puppetlabs/puppetdb/ssl/private.pem
|
|
|
|
# Public certificate path
|
|
ssl-cert = /etc/puppetlabs/puppetdb/ssl/public.pem
|
|
|
|
# Certificate authority path
|
|
ssl-ca-cert = /etc/puppetlabs/puppetdb/ssl/ca.pem
|
|
|
|
# Access logging configuration path. To turn off access logging
|
|
# comment out the line with `access-log-config=...`
|
|
access-log-config = /etc/puppetlabs/puppetdb/request-logging.xml
|