core/hostmanager.lua

changeset 1925
6897bd311afa
parent 1893
2d202336c9b6
child 1974
cfac07d8428e
--- a/core/hostmanager.lua	Mon Oct 05 18:47:01 2009 +0100
+++ b/core/hostmanager.lua	Mon Oct 05 22:15:32 2009 +0100
@@ -51,9 +51,11 @@
 		end
 	end
 	
-	local ssl_config = host_config.core.ssl or configmanager.get("*", "core", "ssl");
-	if ssl_config then
-        	hosts[host].ssl_ctx = ssl.newcontext(setmetatable(ssl_config, { __index = default_ssl_ctx }));
+	if ssl then
+		local ssl_config = host_config.core.ssl or configmanager.get("*", "core", "ssl");
+		if ssl_config then
+        		hosts[host].ssl_ctx = ssl.newcontext(setmetatable(ssl_config, { __index = default_ssl_ctx }));
+        	end
         end
 
 	log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host);

mercurial