Initialize web server with Express for serving static files

This commit is contained in:
pancakes-proxy 2025-05-10 04:23:51 +09:00
parent 35c40ea195
commit fb593cc592

17
website/app.js Normal file
View File

@ -0,0 +1,17 @@
const express = require('express');
const path = require('path');
const app = express();
const port = 443; // Port 443 is typically used for HTTPS, may require elevated privileges
// Serve static files from the 'website' directory
app.use(express.static(path.join(__dirname, '/')));
// Catch-all route to serve index.html for any other requests
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'index.html'));
});
app.listen(port, () => {
console.log(`Web server listening on port ${port}`);
console.log(`Serving files from: ${__dirname}`);
});