Little doc improvement due to issue #22566 (#22591)

Move hostname and port to netty.ssl section
This commit is contained in:
Juan Jose Lopez Martin 2017-04-24 11:34:59 +02:00 committed by Arnout Engelen
parent 64a3a9c028
commit e7ac505d4b
2 changed files with 28 additions and 18 deletions

View file

@ -449,19 +449,24 @@ Next the actual SSL/TLS parameters have to be configured::
akka {
remote {
netty.ssl.security {
key-store = "/example/path/to/mykeystore.jks"
trust-store = "/example/path/to/mytruststore.jks"
netty.ssl {
hostname = "127.0.0.1"
port = "3553"
key-store-password = "changeme"
key-password = "changeme"
trust-store-password = "changeme"
security {
key-store = "/example/path/to/mykeystore.jks"
trust-store = "/example/path/to/mytruststore.jks"
protocol = "TLSv1.2"
key-store-password = "changeme"
key-password = "changeme"
trust-store-password = "changeme"
enabled-algorithms = [TLS_DHE_RSA_WITH_AES_128_GCM_SHA256]
protocol = "TLSv1.2"
random-number-generator = "AES128CounterSecureRNG"
enabled-algorithms = [TLS_DHE_RSA_WITH_AES_128_GCM_SHA256]
random-number-generator = "AES128CounterSecureRNG"
}
}
}
}

View file

@ -474,19 +474,24 @@ Next the actual SSL/TLS parameters have to be configured::
akka {
remote {
netty.ssl.security {
key-store = "/example/path/to/mykeystore.jks"
trust-store = "/example/path/to/mytruststore.jks"
netty.ssl {
hostname = "127.0.0.1"
port = "3553"
key-store-password = "changeme"
key-password = "changeme"
trust-store-password = "changeme"
security {
key-store = "/example/path/to/mykeystore.jks"
trust-store = "/example/path/to/mytruststore.jks"
protocol = "TLSv1.2"
key-store-password = "changeme"
key-password = "changeme"
trust-store-password = "changeme"
enabled-algorithms = [TLS_DHE_RSA_WITH_AES_128_GCM_SHA256]
protocol = "TLSv1.2"
random-number-generator = "AES128CounterSecureRNG"
enabled-algorithms = [TLS_DHE_RSA_WITH_AES_128_GCM_SHA256]
random-number-generator = "AES128CounterSecureRNG"
}
}
}
}