Update TLS configuration for IP address access

- Switch IP address HTTPS to use on_demand TLS mode
- Allows proper certificate generation for IP-based access
- Maintains self-signed certificates for internal use
This commit is contained in:
Quality App Developer
2026-01-14 15:08:54 +02:00
parent 1e08fa45a1
commit 361e0bc459

View File

@@ -60,10 +60,12 @@ http://10.76.152.164 {
import reverse_proxy_config import reverse_proxy_config
} }
# Handle IP address access (HTTPS - self-signed) # Handle IP address access (HTTPS - self-signed with IP in certificate)
https://10.76.152.164 { https://10.76.152.164 {
import reverse_proxy_config import reverse_proxy_config
tls internal tls {
on_demand
}
} }
# Catch-all for any other HTTP requests # Catch-all for any other HTTP requests