Hi, I got a new router (rt-ac86u). All my network is up and running, everything works, except HASSIO, I can SSH inside HASSIO host (a NUC with PROXMOX and HASSoS), but HASSIO does not load in my browser
It was working perfectly with the old router and same settings (unless the RT-86U come with some default settings that I overlooked).
Of course without logging inside my HASSIO installation, I do not know how to change configuration (for example disable caddy)
My relevant configurations are below.:
forwarded port 443 and 80 to 8123 at 192.168.1.10 (my HASSIO host)
in configuration.yaml
http:
api_password: !secret api_password
ssl_certificate: /ssl/fullchain.pem
ssl_key: /ssl/privkey.pem
base_url: https://xxx.duckdns.org
I use Caddy HASSIO addon as proxy with the below configuration
xxxx.duckdns.org {
tls {
dns duckdns
}
log data/requests.log {
rotate_size 50 # Rotate after 50 MB
rotate_age 90 # Keep rotated files for 90 days
rotate_keep 20 # Keep at most 20 log files
rotate_compress # Compress rotated log files in gzip format
}
header / {
Strict-Transport-Security “max-age=31536000; includeSubdomains”
X-XSS-Protection “1; mode=block”
X-Content-Type-Options “nosniff”
X-Frame-Options “SAMEORIGIN”
Referrer-Policy “same-origin”
-Server
}
proxy / 192.168.1.10:8123 {
websocket
transparent
header_upstream Authorization {>Authorization}
}
}