startpage/server.js

21 lines
382 B
JavaScript
Raw Normal View History

2021-06-22 12:06:23 +02:00
'use strict';
// Constants
const PORT = 8080;
const HOST = '0.0.0.0';
const fastify = require('fastify')()
const path = require('path')
fastify.register(require('fastify-static'), {
root: path.join(__dirname),
})
fastify.get('/', function (req, reply) {
return reply.sendFile('index.html');
})
fastify.listen(PORT, HOST);
console.log(`Running on http://${HOST}:${PORT}`);