Build [v1.9.10] (Access & SSL Recovery: Fixed Admin info and Explicit IP Proxy)

This commit is contained in:
Daniel Bedeleanu
2026-04-13 22:07:15 +03:00
parent a2f6cab492
commit bdf6d605cd
6 changed files with 116 additions and 34 deletions

View File

@@ -1,13 +1,21 @@
# TFM aInventory - Caddy Static Internal Configuration
# We use standard ports 443/444 internally to decouple from host-side dynamic ports.
# TFM aInventory - Caddy Explicit IP Configuration
# Version 1.9.10 - Focused on resolving Protocol Errors on private IPs.
{
https://:443 {
# Global options
admin off
# Disable automatic HTTP->HTTPS redirects to prevent port conflicts on non-standard ports
auto_https disable_redirects
}
# Frontend SSL Proxy - Explicit address to improve handshake success
https://{$SERVER_IP:192.168.84.113}:443 {
tls internal
reverse_proxy frontend:3000
}
# Backend SSL Proxy
https://{$SERVER_IP:192.168.84.113}:444 {
https://:444 {
tls internal
reverse_proxy backend:8000
}
}