diff options
| author | Luke Bratch <luke@bratch.co.uk> | 2026-04-02 21:13:20 +0200 |
|---|---|---|
| committer | Luke Bratch <luke@bratch.co.uk> | 2026-04-02 21:13:20 +0200 |
| commit | 6404663b4588d606adfc06dbceeca24a4c748122 (patch) | |
| tree | 41b6e2ea4eb126020553b261353faf0ad6f1b53d /config.c | |
| parent | 4a51c367fa192adba69fac4bf0305ed38290ef19 (diff) | |
Remove/update deprecated OpenSSL functions, change certificate PEM loading to allow loading a chain rather than just a single certificate.
Diffstat (limited to 'config.c')
| -rw-r--r-- | config.c | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -398,11 +398,13 @@ int createconfigfile(char *filename) { "# Things such as the logs directory will be placed below this\n" "#basedir = \"/home/foo/.blabouncer/\"\n" "\n" - "# Certificate file (defaults to <basedir>/cert.pem)\n" + "# Certificate chain PEM file (defaults to <basedir>/cert.pem)\n" + "# Can contain either a single certificate, or a chain of certificates starting with the subject and\n" + "# ending with the root issuer\n" "# If clienttls = \"0\" then this need not be set\n" "#certfile = \"/home/foo/.blabouncer/cert.pem\"\n" "\n" - "# Certificate key file (defaults to <basedir>/key.pem)\n" + "# Private key PEM file (defaults to <basedir>/key.pem)\n" "# If clienttls = \"0\" then this need not be set\n" "#keyfile = \"/home/foo/.blabouncer/key.pem\"\n" "\n" |
