Refactor WebSocket and API configurations in yourpart-https.conf and yourpart-websocket-fixed.conf

- Removed outdated WebSocket handling from yourpart-https.conf for improved clarity.
- Updated yourpart-websocket-fixed.conf to enable SSL and adjust WebSocket proxy settings.
- Streamlined fallback logic in frontend store to ensure direct connection to the daemon on port 4551.
- Enhanced logging for better debugging and monitoring of daemon connections.
This commit is contained in:
Torsten Schulz (local)
2026-01-14 13:02:38 +01:00
parent b3707d21b2
commit 0cc280ed55
3 changed files with 20 additions and 39 deletions

View File

@@ -293,26 +293,13 @@ const store = createStore({
// Wenn Umgebungsvariable nicht gesetzt ist oder leer, verwende Fallback-Logik
if (!daemonUrl || (typeof daemonUrl === 'string' && daemonUrl.trim() === '')) {
// In Produktion: Verwende /ws/ über Nginx-Proxy (Port 443)
if (isProduction) {
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
daemonUrl = `${protocol}//${hostname}/ws/`;
console.log('[Daemon] Verwende Nginx-Proxy /ws/ über Port 443');
} else {
// Lokale Entwicklung: direkte Verbindung zum Daemon-Port 4551
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
daemonUrl = `${protocol}//${hostname}:4551/`;
console.log('[Daemon] Verwende Fallback basierend auf Hostname, Protokoll und Port 4551');
}
// Immer direkte Verbindung zum Daemon-Port 4551 (verschlüsselt)
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
daemonUrl = `${protocol}//${hostname}:4551/`;
console.log('[Daemon] Verwende direkte Verbindung zu Port 4551');
} else {
// Wenn Umgebungsvariable gesetzt ist, aber in Produktion: Konvertiere Port 4551 zu /ws/
if (isProduction && daemonUrl.includes(':4551')) {
const protocol = window.location.protocol === 'https:' ? 'wss:' : 'ws:';
daemonUrl = `${protocol}//${hostname}/ws/`;
console.log('[Daemon] Konvertiere Port 4551 zu /ws/ für Nginx-Proxy');
} else {
console.log('[Daemon] Verwende Umgebungsvariable');
}
// Wenn Umgebungsvariable gesetzt ist, verwende sie direkt
console.log('[Daemon] Verwende Umgebungsvariable:', daemonUrl);
}
console.log('[Daemon] Finale Daemon-URL:', daemonUrl);