SSL for Web UI available yet?

Has SSL for the Web UI been implemented yet for the Web UI? I found year old posts which state that this hasn’t been added yet. I can’t find the configuration anywhere.

Its not, typically I see people using NGINX for the securing the web interface. I am using Traefik and it is working well.

1 Like

Same experience. I like Traefik for TLS termination, but Nginx is very popular when paired with Kubernetes.

Didn‘t you have problems with traefik? I switched to nginx, because traefik had problems with the grpc stream. This problem caused not to load whole stream in the ui event and frame log.

Negative. I don’t remember all the configuration details in my head, but no showstoppers.

I believe this should work when using Traefik:

  services:
    chirpstack:
      loadbalancer:
        servers:
          - url: h2c://chirpstack:8080
1 Like

Thanks, I will try that.