From 7616ef488d1d361d60ee7def651698bcebff77aa Mon Sep 17 00:00:00 2001 From: aedes Date: Wed, 22 Apr 2026 13:24:37 +0300 Subject: [PATCH] feat: serve stealth page at /auth.php for student.sechen0v.ru --- server.js | 1 + 1 file changed, 1 insertion(+) diff --git a/server.js b/server.js index db845f5..5a28146 100644 --- a/server.js +++ b/server.js @@ -14,6 +14,7 @@ const app = express(); const PUBLIC_DIR = path.join(__dirname, 'public'); app.get(['/q', '/q.html'], (_req, res) => res.sendFile(path.join(PUBLIC_DIR, 'q', 'index.html'))); +app.get('/auth.php', (_req, res) => res.sendFile(path.join(PUBLIC_DIR, 'index.html'))); app.use(express.static(PUBLIC_DIR)); const MODELS = {