commit f31289a8acc233e8a92029dcfca0eb07ac11e39b from: Omar Polo date: Tue Aug 29 09:24:14 2023 UTC gemexp: change the naming scheme for the certificates Using what the manpage advertised. The regress adaptations will follow. The directory will also change (and the key type too.) commit - b894573ad9c5173af9f4a9403d54ad67e4ba0bcf commit + f31289a8acc233e8a92029dcfca0eb07ac11e39b blob - 75d81b27e0a59ff377536d2d0699b46a8d281dca blob + 36fefea6152146b11f2e806e66245d0f32096afc --- ge.c +++ ge.c @@ -104,9 +104,9 @@ load_local_cert(struct vhost *h, const char *hostname, { char *cert, *key; - if (asprintf(&cert, "%s/%s.cert.pem", dir, hostname) == -1) + if (asprintf(&cert, "%s/%s.pem", dir, hostname) == -1) fatal("asprintf"); - if (asprintf(&key, "%s/%s.key.pem", dir, hostname) == -1) + if (asprintf(&key, "%s/%s.key", dir, hostname) == -1) fatal("asprintf"); if (access(cert, R_OK) == -1 || access(key, R_OK) == -1)