6fadb73263
- Session-based login page instead of HTTP Basic Auth - /ca.crt download works without login for easy device access - HTTP port (default 8080) redirects to HTTPS automatically - Nginx access/error log viewer in WebUI - API still supports Basic Auth for curl/scripts - Logout button and log navigation in header Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
19 lines
396 B
Bash
19 lines
396 B
Bash
# ============================================
|
|
# HTTPS Proxy - Konfiguration
|
|
# ============================================
|
|
|
|
# --- Zertifikat-Einstellungen ---
|
|
CERT_COUNTRY=DE
|
|
CERT_STATE=Bavaria
|
|
CERT_CITY=Munich
|
|
CERT_ORG=MyOrganization
|
|
CERT_OU=IT
|
|
CERT_CN=proxy.local
|
|
CERT_DAYS=36500
|
|
|
|
# --- WebUI-Einstellungen ---
|
|
WEBUI_PORT=8443
|
|
WEBUI_PORT_HTTP=8080
|
|
WEBUI_USERNAME=admin
|
|
WEBUI_PASSWORD=admin123
|