Hi there. I have a self jitsi docker installation and i want colibri stats enabled.
in docker compose, on service jvb i have this ports (it is the default configs):
ports:
- ‘${JVB_PORT:-10000}:${JVB_PORT:-10000}/udp’
- ‘127.0.0.1:${JVB_COLIBRI_PORT:-8081}:8080’
In my .env i have COLIBRI_REST_ENABLED=true and if i try http://127.0.0.1:8081/colibri/stats it works well.
But it is a private interface, so i want to reach under mydomain.com/jvb/stats so on nginx i put
> location /jvb/stats {
> proxy_set_header Host $host;
> proxy_set_header X-Real-IP $remote_addr;
> proxy_pass http://localhost:8081/colibri/stats;
> }
with no success. Is it possible?
Thank you