>>>>> "JK" == Jonas Kellens <[email protected]> writes:
JK> [Jun 2 14:29:28] ERROR[27360][C-00000ae5]: res_rtp_asterisk.c:1441 JK> ast_rtp_dtls_set_configuration: Specified certificate file JK> '/etc/letsencrypt/live/ws.mydomain.tld/privkey.pem' for RTP instance JK> '0x7f920c538a78' could not be used That error means that openssl's SSL_CTX_use_certificate_file() returned an error. The later error is just a result of that one. Does the uid/gid used for asterisk have access to the key? If the uid you use for asterisk is called asterisk, run this as root: su -c 'cat /etc/letsencrypt/live/ws.mydomain.tld/privkey.pem' - asterisk If it fails, then the problem is permissions. You may need to alter the permissions on /etc/letsencrypt to allow non-root uids to access the symlinks and their targets. -JimC -- James Cloos <[email protected]> OpenPGP: 0x997A9F17ED7DAEA6 -- _____________________________________________________________________ -- Bandwidth and Colocation Provided by http://www.api-digital.com -- Check out the new Asterisk community forum at: https://community.asterisk.org/ New to Asterisk? Start here: https://wiki.asterisk.org/wiki/display/AST/Getting+Started asterisk-users mailing list To UNSUBSCRIBE or update options visit: http://lists.digium.com/mailman/listinfo/asterisk-users
