Skip to content

SSL Configuration

PETER.NIGHTINGALE edited this page Aug 16, 2021 · 6 revisions

References: Application Definition


CSAP SSL configuration


  1. Stored in the application-company.yml in the Application Definition.
  2. ssl can be disabled by setting: keystore-file: ""
  3. all server side connections will also use ssl by default. To disable (and only use in browser): client: false
csap:
  web-server: 
   
    ssl:
      # port: xxxx  # defaults to http port + 2, agent is 8013
      keystore-type: PKCS12
      keystore-file: file:/opt/csap/csap.p12
      keystore-password: xxxx
      key-alias: csap

Self signed configuration


  1. update csap yaml ssl section: self-signed: true
  2. create a cert:
#
# csap has a convenience shell function
#

make_keystore "my-company.com" "my-password"
Clone this wiki locally