From 5db74b724e52d50c1d22c2dfccd19b75252d669a Mon Sep 17 00:00:00 2001 From: Arksine Date: Fri, 21 May 2021 20:00:41 -0400 Subject: [PATCH] docs: document https configuration options Signed-off-by: Eric Callahan --- docs/configuration.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/configuration.md b/docs/configuration.md index a4579ee..96d2592 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -20,6 +20,16 @@ host: 0.0.0.0 # to all interfaces port: 7125 # The port the HTTP server will listen on. Default is 7125 +ssl_port: 7130 +# The port to listen on for SSS (HTTPS) connections. Note that the HTTPS +# server will only be started of the certificate and key options outlined +# below are provied. The default is 7130. +ssl_certificate_path: +# The path to a self signed ssl certificate. The default is no path, which +# disables HTTPS. +ssl_key_path: +# The path to the private key used to signed the certificate. The default +# is no path, which disables HTTPS. klippy_uds_address: /tmp/klippy_uds # The address of Unix Domain Socket used to communicate with Klippy. Default # is /tmp/klippy_uds