dataplaneapi
dataplaneapi copied to clipboard
v2.3.7 TLS problem
I just upgraded the containers to v2.3.7
Now a strange config issue before I had dataplaneapi { scheme = ["https"] host = "0.0.0.0"
tls { tls_port = 50012 tls_certificate = "/etc/haproxy/apicert.pem" tls_key = "/etc/haproxy/apiskey.pem" }
This was working fine now with v2.3.7 you get fatal msg="check if dataplane is running failed on https://0.0.0.0:0/v2" eg its no using the tls port in the checks
I had to add the port in the dataplaneapi { scheme = ["https"] host = "0.0.0.0" port = 50012
to get it too work