Browse Source

add protocol,enabled-protocols,ciphers settings

tags/1.6.2
liuyuanmu 2 years ago
parent
commit
9767ac46ea
7 changed files with 14 additions and 5 deletions
  1. +1
    -1
      core
  2. +4
    -1
      deploy/deploy-gateway/src/main/resources/config/application-gw.properties
  3. +3
    -0
      deploy/deploy-peer/src/main/resources/config/application-peer.properties
  4. +3
    -0
      deploy/deploy-peer/src/main/resources/config/init/local.conf
  5. +1
    -1
      libs/bft-smart
  6. +1
    -1
      libs/httpservice
  7. +1
    -1
      libs/utils

+ 1
- 1
core

@@ -1 +1 @@
Subproject commit 3b2fccd37dc18be40322b25acd1e0aeb1a4b126c
Subproject commit 8c58f3ad78ada5a40c8c6c0d83ceea9cf04ad94c

+ 4
- 1
deploy/deploy-gateway/src/main/resources/config/application-gw.properties View File

@@ -2,7 +2,10 @@
server.compression.enabled=true
server.compression.mime-types=application/json,application/xml,text/html,text/xml,text/plain

# TLS
# SSL
server.ssl.protocol=
server.ssl.enabled-protocols=
server.ssl.ciphers=
server.ssl.key-store=
server.ssl.key-store-type=PKCS12
server.ssl.key-alias=


+ 3
- 0
deploy/deploy-peer/src/main/resources/config/application-peer.properties View File

@@ -5,6 +5,9 @@ server.compression.mime-types=application/json,application/xml,text/html,text/xm
# 管理服务TLS配置
server.ssl.enabled=false
server.ssl.client-auth=none
server.ssl.protocol=
server.ssl.enabled-protocols=
server.ssl.ciphers=
server.ssl.key-store=
server.ssl.key-store-type=PKCS12
server.ssl.key-alias=


+ 3
- 0
deploy/deploy-peer/src/main/resources/config/init/local.conf View File

@@ -15,6 +15,9 @@ local.parti.privkey-path=
local.parti.pwd=

#当前参与方的共识服务TLS配置
local.parti.ssl.protocol=
local.parti.ssl.enabled-protocols=
local.parti.ssl.ciphers=
local.parti.ssl.key-store=
local.parti.ssl.key-store-type=
local.parti.ssl.key-alias=


+ 1
- 1
libs/bft-smart

@@ -1 +1 @@
Subproject commit db6cbc794fc941b799ce2ccdf8f969c5b3ee9403
Subproject commit 9a6a497815984ceccc480beca6d429d5b203125f

+ 1
- 1
libs/httpservice

@@ -1 +1 @@
Subproject commit 55190ca843098d30740e61aa1911239983fdd032
Subproject commit 5257ed25bc6b89af413842739d06f8923e40ab14

+ 1
- 1
libs/utils

@@ -1 +1 @@
Subproject commit 7f0b301addd9ec6237c2c947cdb629b12831fd43
Subproject commit df08741c65808d5f36ca032152b0bcc341a5a409

Loading…
Cancel
Save