tlstunnel(1) # NAME tlstunnel - TLS reverse proxy # SYNOPSIS *tlstunnel* [options...] # DESCRIPTION tlstunnel is a TLS reverse proxy with support for automatic TLS certificate retrieval via the ACME protocol. # OPTIONS *-h*, *-help* Show help message and quit. *-config* Path to the configuration file. # CONFIG FILE The config file has one directive per line. Directives have a name, followed by parameters separated by space characters. Directives may have children in blocks delimited by "{" and "}". Lines beginning with "#" are comments. tlstunnel will reload the config file when it receives the HUP signal. Example: ``` frontend example.org:443 { backend localhost:8080 } ``` The following directives are supported: *frontend*
... { ... } Addresses to listen on for incoming TLS connections. Each address is in the form _:_. The name may be omitted to match all hosts. The name can contain a wildcard, but only to represent the first label of the hostname (e.g. _\*.example.org_ works, matches _foo.example.org_ but doesn't match _foo.bar.example.org_). The frontend directive supports the following sub-directives: *listen*
... Additional addresses to listen on. *backend* { ... } Backend to forward incoming connections to. The following URIs are supported: - _[tcp://]:_ connects to a TCP server - _tls://:_ connects to a TLS over TCP server - _unix://_ connects to a Unix socket The _+proxy_ suffix can be added to the URI scheme to forward connection metadata via the PROXY protocol. The backend directive supports the following sub-directives: *tls_certfp* sha-256 Instead of using CAs to check the TLS certificate provided by the backend, check that the certificate matches the provided fingerprint. This can be used to connect to servers with a self-signed certificate, for instance. The fingerprint of a certificate can be obtained via *openssl*(1): ``` openssl x509 -fingerprint -sha256 -noout ``` *proxy_version* PROXY protocol version to use, if _+proxy_ is specified. The supported versions are 1 and 2. If not specified, the PROXY version used defaults to version 2. *tls* { ... } Customise frontend-specific TLS configuration. The tls directive supports the following sub-directives: *load* Load certificates and private keys from PEM files. This disables automatic TLS. *protocol* ... List of supported application-layer protocols. The first protocol which is also supported by the client is negociated. The backend can inspect the negotiated protocol via the PROXY protocol. The protocols will be advertised via the TLS ALPN extension. See the IANA registry for a list of protocol names: https://www.iana.org/assignments/tls-extensiontype-values/tls-extensiontype-values.xhtml#alpn-protocol-ids For instance, for an HTTP server supporting HTTP/1 and HTTP/2: ``` protocol h2 http/1.1 http/1.0 ``` *tls* { ... } Customise global TLS configuration. The tls directive supports the following sub-directives: *acme_ca* ACME Certificate Authority endpoint. *email*
The email address to use when creating or selecting an existing ACME server account *on_demand* { ... } Enable on-demand TLS. When enabled, a TLS handshake may trigger maintenance for the relevant certificate. If no existing certificate is available, a new certificate is obtained and the connection is blocked until it's available. If an existing certificate is available, the certificate is renewed in the background if necessary. Warning: to prevent abuse, you should specify a _validate_command_ sub-directive. The on_demand directive supports the following optional sub-directives: *validate_command* command [arguments...] Command to run before an on-demand certificate is obtained. If the command returns a non-zero exit status, the request is denied. The environment will contain a *TLSTUNNEL_NAME* variable with the domain name to be validated. *acme_dns_command* command [arguments...] Configure the ACME DNS challenge using the specified command. The command must implement _deploy_challenge_ and _clean_challenge_ as specified by dehydrated's hooks: https://github.com/dehydrated-io/dehydrated # FILES _/etc/tlstunnel/config_ Default configuration file location. _/var/lib/tlstunnel_ State files such as certificates are stored in this directory. # AUTHORS Maintained by Simon Ser , who is assisted by other open-source contributors. For more information about tlstunnel development, see .