- Adjusted WebSocket proxy settings in yourpart-websocket-fixed.conf to route traffic through port 4551 for both secure and non-secure connections. - Enhanced daemonServer.js to listen on all interfaces (0.0.0.0) for both TLS and non-TLS WebSocket connections, improving accessibility.
52 lines
1.9 KiB
JavaScript
52 lines
1.9 KiB
JavaScript
import './config/loadEnv.js'; // .env deterministisch laden
|
|
|
|
import http from 'http';
|
|
import https from 'https';
|
|
import fs from 'fs';
|
|
import app from './app.js';
|
|
import { setupWebSocket } from './utils/socket.js';
|
|
import { syncDatabase } from './utils/syncDatabase.js';
|
|
|
|
// HTTP-Server für API (Port 2020, intern, über Apache-Proxy)
|
|
const httpServer = http.createServer(app);
|
|
setupWebSocket(httpServer);
|
|
|
|
// HTTPS-Server für Socket.io (Port 4443, direkt erreichbar)
|
|
let httpsServer = null;
|
|
const SOCKET_IO_PORT = Number.parseInt(process.env.SOCKET_IO_PORT || '4443', 10);
|
|
const USE_TLS = process.env.SOCKET_IO_TLS === '1';
|
|
const TLS_KEY_PATH = process.env.SOCKET_IO_TLS_KEY_PATH;
|
|
const TLS_CERT_PATH = process.env.SOCKET_IO_TLS_CERT_PATH;
|
|
const TLS_CA_PATH = process.env.SOCKET_IO_TLS_CA_PATH;
|
|
|
|
if (USE_TLS && TLS_KEY_PATH && TLS_CERT_PATH) {
|
|
try {
|
|
httpsServer = https.createServer({
|
|
key: fs.readFileSync(TLS_KEY_PATH),
|
|
cert: fs.readFileSync(TLS_CERT_PATH),
|
|
ca: TLS_CA_PATH ? fs.readFileSync(TLS_CA_PATH) : undefined,
|
|
}, app);
|
|
setupWebSocket(httpsServer);
|
|
console.log(`[Socket.io] HTTPS-Server für Socket.io konfiguriert auf Port ${SOCKET_IO_PORT}`);
|
|
} catch (err) {
|
|
console.error('[Socket.io] Fehler beim Laden der TLS-Zertifikate:', err.message);
|
|
console.error('[Socket.io] Socket.io wird nur über HTTP-Server verfügbar sein');
|
|
}
|
|
}
|
|
|
|
syncDatabase().then(() => {
|
|
const port = process.env.PORT || 3001;
|
|
httpServer.listen(port, '127.0.0.1', () => {
|
|
console.log(`[API] HTTP-Server läuft auf localhost:${port} (intern, über Apache-Proxy)`);
|
|
});
|
|
|
|
if (httpsServer) {
|
|
httpsServer.listen(SOCKET_IO_PORT, '0.0.0.0', () => {
|
|
console.log(`[Socket.io] HTTPS-Server läuft auf Port ${SOCKET_IO_PORT} (direkt erreichbar)`);
|
|
});
|
|
}
|
|
}).catch(err => {
|
|
console.error('Failed to sync database:', err);
|
|
process.exit(1);
|
|
});
|