Created
August 12, 2015 09:23
-
-
Save lkarsten/68b6a538767d1fd46065 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# hitch(8), The Scalable TLS Unwrapping Daemon's configuration | |
# | |
# NOTE: all config file parameters can be overriden | |
# from command line! | |
# Listening address. REQUIRED. | |
# Can be specified multiple times for multiple listen endpoints. | |
# type: string | |
# syntax: [HOST]:PORT[+CERT] | |
#frontend = "[*]:8443" | |
frontend = "[*]:443" | |
# Upstream server address. REQUIRED. | |
# | |
# type: string | |
# syntax: [HOST]:PORT. | |
backend = "[127.0.0.1]:6086" | |
# SSL x509 certificate file. REQUIRED. | |
# List multiple certs to use SNI. Certs are used in the order they | |
# are listed; the last cert listed will be used if none of the others match | |
# | |
# type: string | |
pem-file = "/etc/hitch/certificate.pem" | |
# SSL protocol. | |
# | |
# tls = on | |
# ssl = off | |
# List of allowed SSL ciphers. | |
# | |
# Run openssl ciphers for list of available ciphers. | |
# type: string | |
#ciphers = "HIGH" | |
ciphers = "EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH" | |
# Enforce server cipher list order | |
# | |
# type: boolean | |
#prefer-server-ciphers = off | |
prefer-server-ciphers = on | |
# Use specified SSL engine | |
# | |
# type: string | |
ssl-engine = "" | |
# Number of worker processes | |
# | |
# type: integer | |
workers = 4 | |
# Listen backlog size | |
# | |
# type: integer | |
backlog = 100 | |
# TCP socket keepalive interval in seconds | |
# | |
# type: integer | |
keepalive = 3600 | |
# Chroot directory | |
# | |
# type: string | |
chroot = "" | |
# Set uid after binding a socket | |
# | |
# type: string | |
user = "nobody" | |
# Set gid after binding a socket | |
# | |
# type: string | |
group = "nogroup" | |
# Quiet execution, report only error messages | |
# | |
# type: boolean | |
quiet = off | |
# Use syslog for logging | |
# | |
# type: boolean | |
syslog = off | |
# Syslog facility to use | |
# | |
# type: string | |
syslog-facility = "daemon" | |
# Run as daemon | |
# | |
# type: boolean | |
daemon = off | |
# Report client address by writing IP before sending data | |
# | |
# NOTE: This option is mutually exclusive with option write-proxy-v2, write-proxy and proxy-proxy. | |
# | |
# type: boolean | |
write-ip = off | |
# Report client address using SENDPROXY protocol, see | |
# http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt | |
# for details. | |
# | |
# NOTE: This option is mutually exclusive with option write-proxy-v2, write-ip and proxy-proxy. | |
# | |
# type: boolean | |
write-proxy = off | |
# Report client address using SENDPROXY v2 binary protocol, see | |
# http://haproxy.1wt.eu/download/1.5/doc/proxy-protocol.txt | |
# for details. | |
# | |
# NOTE: This option is mutually exclusive with option write-ip, write-proxy and proxy-proxy. | |
# | |
# type: boolean | |
#write-proxy-v2 = off | |
write-proxy-v2 = yes | |
# Proxy an existing SENDPROXY protocol header through this request. | |
# | |
# NOTE: This option is mutually exclusive with option write-proxy-v2, write-ip and write-proxy. | |
# | |
# type: boolean | |
proxy-proxy = off | |
# Abort handshake when the client submits an unrecognized SNI server name. | |
# | |
# type: boolean | |
sni-nomatch-abort = off | |
# EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment