diff options
author | Kim Alvefur <zash@zash.se> | 2013-06-07 20:55:02 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-06-07 20:55:02 +0200 |
commit | 7c74e93345f13bf59b9b1ef847279003dd2e9582 (patch) | |
tree | cd66616bea031f7ffac10b36b56ab4e502e840d5 /core | |
parent | eb28aab70c8da1f2efb56963344e90d89b786f57 (diff) | |
download | prosody-7c74e93345f13bf59b9b1ef847279003dd2e9582.tar.gz prosody-7c74e93345f13bf59b9b1ef847279003dd2e9582.zip |
certmanager: Complain if key or certificate is missing from SSL config.
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 49f445f6..5be328f6 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -49,6 +49,8 @@ function create_context(host, mode, user_ssl_config) if not ssl then return nil, "LuaSec (required for encryption) was not found"; end if not user_ssl_config then return nil, "No SSL/TLS configuration present for "..host; end + if not user_ssl_config.key then return nil, "No key present in SSL/TLS configuration for "..host; end + if not user_ssl_config.certificate then return nil, "No certificate present in SSL/TLS configuration for "..host; end local ssl_config = { mode = mode; |