FunctionProject/website/server.js

29 lines
672 B
JavaScript
Raw Normal View History

/* Modules */
2020-08-03 12:04:07 +02:00
const next = require('next')
const express = require('express')
const redirectToHTTPS = require('express-http-to-https').redirectToHTTPS
2020-03-22 03:52:04 +01:00
/* Variables */
2020-08-03 12:04:07 +02:00
const PORT = process.env.PORT || 3000
const dev = process.env.NODE_ENV !== 'production'
const app = next({ dev })
const handle = app.getRequestHandler()
2020-03-22 03:52:04 +01:00
app.prepare().then(() => {
2020-08-03 12:04:07 +02:00
const server = express()
2020-03-22 03:52:04 +01:00
2020-08-03 12:04:07 +02:00
/* Middlewares */
server.use(redirectToHTTPS([/localhost:(\d{4})/]))
2020-08-03 12:04:07 +02:00
/* Routes */
server.all('*', (req, res) => {
return handle(req, res)
})
2020-08-03 12:04:07 +02:00
/* Server */
2020-08-03 14:14:45 +02:00
server.listen(PORT, error => {
2020-08-03 12:04:07 +02:00
if (error) throw error
console.log(`> Ready on http://localhost:${PORT}`)
})
})