forked from DebaucheryLibrarian/traxxx
Moved maintenance page to public directory to be served by webserver.
This commit is contained in:
parent
214409a591
commit
b872d7a0ec
|
@ -36,10 +36,6 @@ module.exports = {
|
|||
maxAge: 2629800000, // 1 month
|
||||
},
|
||||
},
|
||||
maintenance: {
|
||||
enabled: false,
|
||||
text: 'Traxxx is currently under maintenance. We will be back shortly!',
|
||||
},
|
||||
},
|
||||
redis: {
|
||||
host: 'localhost',
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
align-items: center;
|
||||
justify-content: center;
|
||||
font-family: sans-serif;
|
||||
background: url('/img/maintenance_ella_reese.jpeg');
|
||||
background: url('/maintenance_ella_reese.jpeg');
|
||||
background-position: top center;
|
||||
background-size: cover
|
||||
}
|
||||
|
@ -52,8 +52,6 @@
|
|||
</head>
|
||||
|
||||
<body>
|
||||
<div class="text">
|
||||
<%= text %>
|
||||
</div>
|
||||
<div class="text">Traxxx is currently under maintenance. We will be back shortly!</div>
|
||||
</body>
|
||||
</html>
|
Before Width: | Height: | Size: 229 KiB After Width: | Height: | Size: 229 KiB |
|
@ -162,19 +162,7 @@ async function initServer() {
|
|||
});
|
||||
|
||||
router.use(errorHandler);
|
||||
|
||||
if (config.web.maintenance.enabled) {
|
||||
app.use(express.static('public'));
|
||||
|
||||
app.get('/', (req, res) => {
|
||||
res.status(503).render(path.join(__dirname, '../../assets/maintenance.ejs'), {
|
||||
analytics: config.analytics,
|
||||
text: config.web.maintenance.text,
|
||||
});
|
||||
});
|
||||
} else {
|
||||
app.use(router);
|
||||
}
|
||||
app.use(router);
|
||||
|
||||
const server = app.listen(config.web.port, config.web.host, () => {
|
||||
const { address, port } = server.address();
|
||||
|
|
Loading…
Reference in New Issue