1
0
mirror of https://github.com/trezor/trezor-wallet synced 2024-11-05 07:38:57 +00:00

Added express server for static resources

This commit is contained in:
Vladimir Volek 2018-10-02 15:04:11 +02:00 committed by Szymon Lesisz
parent d076fc5bd1
commit fcd55b767b

31
server/index.js Normal file
View File

@ -0,0 +1,31 @@
const express = require('express');
const morgan = require('morgan');
const fs = require('fs');
const path = require('path');
const https = require('https');
const privateKey = fs.readFileSync('server/key.pem').toString();
const certificate = fs.readFileSync('server/cert.pem').toString();
const credentials = { key: privateKey, cert: certificate };
const app = express();
const PORT = process.env.PORT || 8080;
// Setup logger
app.use(morgan(':remote-addr - :remote-user [:date[clf]] ":method :url HTTP/:http-version" :status :res[content-length] :response-time ms'));
// Serve static assets
app.use(express.static(path.resolve(__dirname, '..', 'build')));
// Always return the main index.html, so react-router render the route in the client
app.get('*', (req, res) => {
res.sendFile(path.resolve(__dirname, '..', 'build', 'index.html'));
});
const httpsServer = https.createServer(credentials, app);
httpsServer.listen(PORT);
console.log('-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-');
console.log(`🌐 Application is listening on port ${PORT}`);
console.log('-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-·-');