kees
December 7, 2025, 7:33pm
4
It looks like this problem was discussed earlier. Several people report the same problem. Nobody seems to know that Content-Security-Policy causes the black screen.
I have the same problem… When I set up the reverse proxy I end up on a blanket site
I am trying to do the same thing with reverse proxy and influxdb. The web UI works fine at localhost:8086.
I used @Grom config but still got a black page. I plan to access influx web UI by https://my.domain/influx so my config is like:
location /influx/ {
proxy_pass http://localhost:8086;
proxy_redirect off;
proxy_http_version 1.1;
proxy_max_temp_file_size 10m;
proxy_connect_timeout 20;
proxy_send_t…