VNC client

This commit is contained in:
2026-09-15 00:44:41 -04:00
parent ecc7ef5a8a
commit 8f93efba73
+1 -1
View File
@@ -11,7 +11,7 @@ const VNC_PORT = process.env.VNC_PORT || 5900;
export const vncRouter = express.Router(); export const vncRouter = express.Router();
vncRouter.get('/novnc/vnc.html', (req, res) => vncRouter.get('/novnc/vnc.html', (req, res) =>
res.sendFile(path.join(__dirname, '../public/vnc.html')) res.sendFile(path.join(__dirname, '../../public/vnc.html'))
); );
vncRouter.use('/novnc', express.static(NOVNC)); vncRouter.use('/novnc', express.static(NOVNC));