diff options
Diffstat (limited to 'example/config.yaml')
-rw-r--r-- | example/config.yaml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/example/config.yaml b/example/config.yaml index 74c47dd8b..bdd3c4cc2 100644 --- a/example/config.yaml +++ b/example/config.yaml @@ -575,6 +575,22 @@ letsencrypt-cert-dir: "/gotosocial/storage/certs" # Default: "" letsencrypt-email-address: "" +############################## +##### MANUAL TLS CONFIG ##### +############################## + +# String. Path to a PEM-encoded file on disk that includes the certificate chain +# and the public key +# Examples: ["/gotosocial/storage/certs/chain.pem"] +# Default: "" +tls-certificate-chain: "" + +# String. Path to a PEM-encoded file on disk containing the private key for the +# associated tls-certificate-chain +# Examples: ["/gotosocial/storage/certs/private.pem"] +# Default: "" +tls-certificate-key: "" + ####################### ##### OIDC CONFIG ##### ####################### |