Skip to content

SSL Enabling

Furkan Senharputlu edited this page Apr 14, 2020 · 2 revisions

You can enable SSL/TLS for your license server. See the example configuration below:

"server_options": {
    "enable_tls": true,
    "cert_file": "cert.pem",
    "key_file": "key.pem",
    "tls_config": {
      "ServerName": "localhost"
    }
  }

tls_config is the JSON representation of the built-in Go tls.Config struct.

Clone this wiki locally