You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@openwhisk.apache.org by GitBox <gi...@apache.org> on 2018/05/28 11:52:04 UTC

[GitHub] jeremiaswerner closed pull request #3706: Limit cipher suites used for controller https

jeremiaswerner closed pull request #3706: Limit cipher suites used for controller https
URL: https://github.com/apache/incubator-openwhisk/pull/3706
 
 
   

This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:

As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):

diff --git a/ansible/group_vars/all b/ansible/group_vars/all
index 286b8e4051..25312d26ee 100644
--- a/ansible/group_vars/all
+++ b/ansible/group_vars/all
@@ -112,9 +112,6 @@ kafka:
       name: kafka-keystore.jks
       password: openwhisk
     cipher_suites:
-    - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA
-    - TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256
-    - TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256
     - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA
     - TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256
     - TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256
diff --git a/core/controller/src/main/resources/application.conf b/core/controller/src/main/resources/application.conf
index faec173231..a2886368e3 100644
--- a/core/controller/src/main/resources/application.conf
+++ b/core/controller/src/main/resources/application.conf
@@ -72,3 +72,9 @@ akka {
     metrics.enabled=off
   }
 }
+
+ssl-config.enabledCipherSuites = [
+  "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA",
+  "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256",
+  "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256",
+]


 

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services