Hi everyone! I'm creating a local observability st...
# support
e
Hi everyone! I'm creating a local observability stack in a kind cluster and using Helm to deploy SigNoz. I'm trying to set up nginx so I can access SigNoz on a path like http://domain.com/signoz, but only a blank white page is shown (I'm having the same issue as this git issue). Does SigNoz support context roots/the ability to change the base path? This is how I'm setting up ingress in my value_overrides.yaml file:
Copy code
frontend: 
  ingress: 
    enabled: true
    className: nginx 
    hosts:
      - host: <http://domain.com|domain.com>
        paths:
          - path: /signoz
            pathType: Prefix
            port: 3301
n
This is not supported right now. You could use something like
<http://singoz.domain.com|singoz.domain.com>
e
Okay, thanks for the reply!