Created
January 27, 2017 22:09
-
-
Save ruescasd/b8b38f25f07cfdf7c1a4ef8a1b16b5b8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
play.ws.ssl { | |
trustManager = { | |
stores = [ | |
{ type = "PEM", path = "server.crt" } | |
] | |
} | |
keyManager = { | |
stores = [ | |
{ type="PKCS12", path="client.p12", password="client" } | |
] | |
} | |
loose.acceptAnyCertificate=true | |
debug = { | |
all = true | |
} | |
} | |
play.ws.ssl.default=false |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment