We are using Codomo Positive SSL. We only want to use ssl for the gateway at https://api.mycompany.com, the dashboard stay outside of ssl. Is that possible ?
During our setup, we generate a cert file following Nginx installation (combine crt and ca_bundle into cert file), place that in tyk.conf of gateway but it doesn’t work. Log return
ERROR Instrumentation is enabled, but no connectionstring set for statsd
and
tls: first record does not look like a TLS handshake
Here is our tyk.conf related to ssl
“http_server_options”: {
“enable_websockets”: true,
“use_ssl”: true,
“certificates”: [
{
“domain_name”: “*.api.the*****.com”,
“cert_file”: “/opt/ssl/api.the*****.com/ssl_bundle.cert”,
“key_file”: “/opt/ssl/api.the*****.com/api_the*****_com.key”
}
]
},