teddit-reddit-frontend-alte.../setup_server.js

18 lines
447 B
JavaScript
Raw Normal View History

2020-11-17 21:44:32 +01:00
/**
Basic HTTP-server, used for obtaining certificates.
*/
const path = require('path')
const express = require('express')
const app = express()
const NONSSL_PORT = 8080
const http = require('http').Server(app)
app.use(express.static(`${__dirname}/dist`))
app.set('trust proxy', 1)
app.get('/', (req, res, next) => {
res.send('/')
})
http.listen(NONSSL_PORT, '0.0.0.0', () => console.log(`HTTP web server started with port ${NONSSL_PORT}`))