This message was deleted.
# support
s
This message was deleted.
1
p
Hi @Datos, can you share your override config?
Provided you have set up your cluster issuer, ingress controller and domain DNS correctly, the following config should do the job:
Copy code
frontend:
  ingress:
    enabled: true
    annotations:
      cert-manager.io/cluster-issuer: letsencrypt-prod
    className: nginx
    hosts:
      - host: signoz.domain.com
        paths:
          - path: /
            pathType: ImplementationSpecific
            port: 3301
    tls:
      - secretName: signoz.domain.com-tls
        hosts:
          - signoz.domain.com
For detailed instruction, refer to our docs: https://signoz.io/docs/tutorial/setting-up-tls-for-signoz/
d
Many thanks @Prashant Shahi! I later found this document. It's working for me now.
🙌 1