Skip to content

Commit 773a2cf

Browse files
authored
Allow separate keypass and storepass
qzind#208 (comment)
1 parent dec0949 commit 773a2cf

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/qz/ws/PrintSocketServer.java

+1
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ public static void runServer() {
117117
SslContextFactory sslContextFactory = new SslContextFactory();
118118
sslContextFactory.setKeyStorePath(trayProperties.getProperty("wss.keystore"));
119119
sslContextFactory.setKeyStorePassword(trayProperties.getProperty("wss.storepass"));
120+
sslContextFactory.setKeyManagerPassword(trayProperties.getProperty("wss.keypass"));
120121

121122
SslConnectionFactory sslConnection = new SslConnectionFactory(sslContextFactory, HttpVersion.HTTP_1_1.asString());
122123
HttpConnectionFactory httpConnection = new HttpConnectionFactory(new HttpConfiguration());

0 commit comments

Comments
 (0)