Fixed keystore password
That's what you get for getting the code from at least 3 different stack overflow threads
This commit is contained in:
parent
33bf2286e9
commit
ee57821c87
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ public class ButtonWebsiteModule extends JavaPlugin {
|
|||
String certfile = "domain-chain.crt"; /* your cert path */
|
||||
File keystoreFile = new File("keystore.keystore");
|
||||
|
||||
ks.load(keystoreFile.exists() ? new FileInputStream(keystoreFile) : null, "somepass".toCharArray());
|
||||
ks.load(keystoreFile.exists() ? new FileInputStream(keystoreFile) : null, password);
|
||||
|
||||
String alias = "chroma";
|
||||
|
||||
|
|
Loading…
Reference in a new issue