I think i am finally tired of this grafana error message, so annoying i am not sure why the grafana team did not fix this thing and keep shipping this software for people to be frustrated when they can create a software without this issue
I will be using the app and one day all of a sudden i open it in another browser and all of a sudden i see this error message and eventually it goes away after like hours or days. it is getting annoying and i am pretty much done with this
How do i setup grafana with proxy settings so grafana can function like any other software behind proxy that never gave issue except for grafana
here is what i currently have
grafana:
image: grafana/grafana:10.2.0-ubuntu
container_name: grafana
volumes:
- grafana-data:/var/lib/grafana
- ./grafana/datasources:/etc/grafana/datasources
- ./grafana/dashboards:/etc/grafana/dashboards
- ./grafana/setup.sh:/setup.sh
entrypoint: /setup.sh
restart: always
networks:
- test
env_file:
- .env.grafana
labels:
- "traefik.enable=true"
- "traefik.docker.network=test"
- "traefik.http.services.grafana.loadbalancer.server.port=3000"
- "traefik.http.routers.grafana-http.entrypoints=http"
- "traefik.http.routers.grafana-http.rule=Host(`grafana.example.com`)"
and here is content of .env.grafana
GF_SECURITY_ADMIN_USER=
GF_SECURITY_ADMIN_PASSWORD=
GF_USERS_ALLOW_SIGN_UP=false
so please let me know what settings so i never have to see that annoying error message again.
I have grafana behind traefik and traefik behind cloudflare