Troubleshooting SSL Certificate Issues in Self-Hosted Phoenix
Hi team! Quick question: I am self-hosting Phoenix and when I try to send traces to my instance, I get the following Certificate verification issue: requests.exceptions.SSLError: HTTPSConnectionPool(host='phoenix-route.cust-ops-comm-dev.aws.delta.com', port=443): Max retries exceeded with url: /v1 (Caused by SSLError(SSLCertVerificationError(1, "[SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed: Hostname mismatch, certificate is not valid for 'phoenix-route.cust-ops-comm-dev.aws.delta.com'. (_ssl.c:1006)")) I have tried the following but none of these have worked:
os.environ["OTEL_EXPORTER_OTLP_CERTIFICATE"]="cert.pem"
os.environ["OTEL_EXPORTER_OTLP_INSECURE"] = "true"
What is usually the best practice here for handling this issue? Any ideas?
