Commit 4fd70fa9 authored by Matt Tucker's avatar Matt Tucker Committed by matt

Changed default location of stores to resources/security


git-svn-id: http://svn.igniterealtime.org/svn/repos/messenger/trunk@142 b35dd754-fafc-0310-a699-88a17e54d16e
parent 208829cf
......@@ -44,15 +44,15 @@ public class SSLConfig {
String storeType = JiveGlobals.getProperty("xmpp.socket.ssl.storeType", "jks");
// Get the keystore location. The default location is security/keystore
keyStoreLocation = JiveGlobals.getProperty("xmpp.socket.ssl.keystore",
JiveGlobals.getMessengerHome() + File.separator + "security" +
File.separator + "keystore");
JiveGlobals.getMessengerHome() + File.separator + "resources" + File.separator +
"security" + File.separator + "keystore");
// Get the keystore password. The default password is "changeit".
keypass = JiveGlobals.getProperty("xmpp.socket.ssl.keypass", "changeit");
keypass = keypass.trim();
// Get the truststore location; default at security/truststore
trustStoreLocation = JiveGlobals.getProperty("xmpp.socket.ssl.truststore",
JiveGlobals.getMessengerHome() + File.separator + "security" +
File.separator + "truststore");
JiveGlobals.getMessengerHome() + File.separator + "resources" + File.separator +
"security" + File.separator + "truststore");
// Get the truststore passwprd; default is "changeit".
trustpass = JiveGlobals.getProperty("xmpp.socket.ssl.trustpass", "changeit");
trustpass = trustpass.trim();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment