From 3cedbbd4ed035682f4aab584535d1aa78e799c9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ryszard=20Go=C5=84?= Date: Fri, 23 Jun 2017 02:23:49 +0200 Subject: [PATCH] Wrong password was removed after the SSL certificate import Removing the keystore password will prevent ssl from working after the next restart. The certificate password should be removed instead. Fixes http://mantis.tokeek.de/view.php?id=687 --- source/net/yacy/http/Jetty9HttpServerImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/net/yacy/http/Jetty9HttpServerImpl.java b/source/net/yacy/http/Jetty9HttpServerImpl.java index 4571cb34e..6a15d155d 100644 --- a/source/net/yacy/http/Jetty9HttpServerImpl.java +++ b/source/net/yacy/http/Jetty9HttpServerImpl.java @@ -423,7 +423,7 @@ public class Jetty9HttpServerImpl implements YaCyHttpServer { // removing entries from config file sb.setConfig("pkcs12ImportFile", ""); - sb.setConfig("keyStorePassword", ""); + sb.setConfig("pkcs12ImportPwd", ""); // deleting original import file // TODO: should we do this