|
# HTTP: test the reverse DNS entry of the remote IP
|
|
#:trusted_hosts:
|
|
#- foreman.prod.domain
|
|
#- foreman.dev.domain
|
|
#to deny access to all hosts use:
|
|
#:trusted_hosts: []
|
|
|
|
# verify a DNS reverse lookup against it's forward lookup
|
|
# 1.1.1.1 -> foreman.mycompany.com -> 1.1.1.1
|
|
# (default: true)
|
|
#:forward_verify: true
|
|
|
|
#:foreman_url: http://127.0.0.1:3000
|
|
|
|
# SSL settings for client authentication against Foreman. If undefined, the values
|
|
# from general SSL options are used instead. Mainly useful when Foreman uses
|
|
# different certificates for its web UI and for smart-proxy requests.
|
|
#:foreman_ssl_ca: ssl/certs/ca.pem
|
|
#:foreman_ssl_cert: ssl/certs/fqdn.pem
|
|
#:foreman_ssl_key: ssl/private_keys/fqdn.pem
|
|
|
|
# by default smart_proxy runs in the foreground. To enable running as a daemon, uncomment 'daemon' setting
|
|
:daemon: true
|
|
# Only used when 'daemon' is set to true.
|
|
# Uncomment and modify if you want to change the default pid file '/var/run/foreman-proxy/foreman-proxy.pid'
|
|
:daemon_pid: /var/run/foreman-proxy/foreman-proxy.pid
|
|
|
|
# host and ports configuration
|
|
# host to bind ports to (possible values: *, localhost, 0.0.0.0)
|
|
:bind_host: '*'
|
|
# http is disabled by default. To enable, uncomment 'http_port' setting
|
|
:http_port: 8000
|
|
# https is enabled if certificate, CA certificate, and private key are present in locations specifed by
|
|
# ssl_certificate, ssl_ca_file, and ssl_private_key correspondingly
|
|
# default values for https_port is 8443
|
|
#:https_port: 8443
|
|
|
|
# Log configuration
|
|
# Uncomment and modify if you want to change the location of the log file or use STDOUT or SYSLOG values
|
|
:log_file: /var/log/ph/foreman-proxy/proxy.log
|
|
# Uncomment and modify if you want to change the log level
|
|
# WARN, DEBUG, ERROR, FATAL, INFO, UNKNOWN
|
|
:log_level: DEBUG
|
|
|
|
# Log buffer size and extra buffer size (for errors). Defaults to 3000 messages in total,
|
|
# which is about 500 kB request.
|
|
:log_buffer: 2000
|
|
:log_buffer_errors: 1000
|
|
|