Seit Mitte Juni habe ich das Problem, dass mein grafana server ohne bewußte Änderungen meinerseits nicht mehr erreichbar ist.
Tendenziell habe ich meine UDM im Verdacht, da diese auf early access steht und die Version 4.06 mit UniFi Network 8.2.93.
- UDM: Port Weiterleitung von extern Port 80,443 zu Nginx Proxy Manager (NPM)
- NPM 192.168.1.3 ohne VLAN
(Proxmox VM im Docker Container, funktioniert solange der Forward Host ebenfalls ohne VLAN) - Proxy Host Definition zu grafana server 10.100.1.20:3000 im VLAN 100
# ------------------------------------------------------------
# grafana.raunet.ipv64.net
# ------------------------------------------------------------
server {
set $forward_scheme http;
set $server "10.100.1.20";
set $port 3000;
listen 80;
listen [::]:80;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name grafana.raunet.ipv64.net;
# Let's Encrypt SSL
include conf.d/include/letsencrypt-acme-challenge.conf;
include conf.d/include/ssl-ciphers.conf;
ssl_certificate /etc/letsencrypt/live/npm-2/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/npm-2/privkey.pem;
# Asset Caching
include conf.d/include/assets.conf;
# Block Exploits
include conf.d/include/block-exploits.conf;
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
add_header Strict-Transport-Security "max-age=63072000; preload" always;
# Force SSL
include conf.d/include/force-ssl.conf;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
access_log /data/logs/proxy-host-2_access.log proxy;
error_log /data/logs/proxy-host-2_error.log warn;
location / {
# HSTS (ngx_http_headers_module is required) (63072000 seconds = 2 years)
add_header Strict-Transport-Security "max-age=63072000; preload" always;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $http_connection;
proxy_http_version 1.1;
# Proxy!
include conf.d/include/proxy.conf;
}
# Custom
include /data/nginx/custom/server_proxy[.]conf;
}
Hat einer von Euch eine Idee und kann einem Laien auf die Sprünge helfen?