Skip to content

v34.1 (preview)

Enable Explorer-Mode in Client

To enable the Explorer Mode in the client, the client must be accessed through /insight/client/ in your browser. Currently this is only available when accessing the client in a browser.

Container / Ingress

apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
    name: insight-clients
spec:
    ingressClassName: nginx
    rules:
        - host: { { .Values.ingress.externalHostname } }
          http:
              paths:
                  - path: /insight/client
                    pathType: Prefix
                    backend:
                        service:
                            name: clients
                            port:
                                name: insight-clients

Container / Traefik

- traefik.http.routers.clients.rule=Host(`${DOMAINNAME}`) && PathPrefix(`/insight/web`,`/insight/mobile`, `/insight/client`)

Apache

RewriteEngine On
RewriteRule ^insight/client(.*)$ /insight/mobile$1 [L]