Ghost/core/server/web/parent/frontend.js
2021-07-08 07:10:18 +01:00

26 lines
809 B
JavaScript

const debug = require('@tryghost/debug')('frontend');
const express = require('../../../shared/express');
const shared = require('../shared');
/**
*
* @param {object} options
* @returns {import('express').RequestHandler}
*/
module.exports = (options) => {
debug('FrontendApp setup start', options);
// FRONTEND
const frontendApp = express('frontend');
// Force SSL if blog url is set to https. The redirects handling must happen before asset and page routing,
// otherwise we serve assets/pages with http. This can cause mixed content warnings in the admin client.
frontendApp.use(shared.middlewares.urlRedirects.frontendSSLRedirect);
frontendApp.use('/members', require('../members')());
frontendApp.use('/', require('../site')(options));
return frontendApp;
};