Last active
October 13, 2015 00:18
-
-
Save bantonsson/4109838 to your computer and use it in GitHub Desktop.
Spotlight for SSL Support
This file contains hidden or 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
Spotlight for SSL Support |
This file contains hidden or 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
akka { | |
actor { | |
provider = "akka.remote.RemoteActorRefProvider" | |
} | |
remote { | |
transport = "akka.remote.netty.NettyRemoteTransport" | |
netty { | |
hostname = "127.0.0.1" | |
ssl { | |
enable = on | |
key-store = "path/to/keystore" | |
key-store-password = "someSecretPassword" | |
trust-store = "path/to/truststore" | |
trust-store-password = "anotherSecretPassword" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment