classify web
This commit is contained in:
32
server.js
Normal file
32
server.js
Normal file
@@ -0,0 +1,32 @@
|
||||
const { createServer } = require('http');
|
||||
const { parse } = require('url');
|
||||
const next = require('next');
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
const dev = process.env.NODE_ENV !== 'production';
|
||||
const app = next({ dev });
|
||||
const handle = app.getRequestHandler();
|
||||
const port = process.env.NODE_PORT || 8003
|
||||
app.prepare().then(() => {
|
||||
createServer((req, res) => {
|
||||
const parsedUrl = parse(req.url, true);
|
||||
const { pathname, query } = parsedUrl;
|
||||
if (pathname.startsWith('/.well-known')) {
|
||||
const filePath = path.join(process.cwd(), pathname.substring(1));
|
||||
try {
|
||||
const fileContent = fs.readFileSync(filePath, 'utf-8');
|
||||
res.writeHead(200, { 'Content-Type': 'application/json' });
|
||||
res.end(fileContent);
|
||||
return;
|
||||
} catch (error) {
|
||||
console.error(error);
|
||||
res.writeHead(404);
|
||||
res.end('Not Found');
|
||||
return;
|
||||
}
|
||||
}
|
||||
handle(req, res, parsedUrl);
|
||||
}).listen(port, (err) => {
|
||||
if (err) throw err;
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user