Client's public folder renamed to static

Regular campaign sender seems to have most of the code in place. (Not tested.)
This commit is contained in:
Tomas Bures 2018-09-18 10:30:13 +02:00
parent 89eabea0de
commit 63765f7222
354 changed files with 836 additions and 324 deletions

View file

@ -19,8 +19,9 @@ const privilegeHelpers = require('./lib/privilege-helpers');
const knex = require('./lib/knex');
const shares = require('./models/shares');
const trustedPort = config.www.port;
const trustedPort = config.www.trustedPort;
const sandboxPort = config.www.sandboxPort;
const publicPort = config.www.publicPort;
const host = config.www.host;
if (config.title) {
@ -30,8 +31,8 @@ if (config.title) {
log.level = config.log.level;
function startHTTPServer(trusted, port, callback) {
const app = appBuilder.createApp(trusted);
function startHTTPServer(appType, port, callback) {
const app = appBuilder.createApp(appType);
app.set('port', port);
const server = http.createServer(app);
@ -84,23 +85,25 @@ dbcheck(err => { // Check if database needs upgrading before starting the server
executor.spawn(() => {
testServer(() => {
verpServer(() => {
startHTTPServer(true, trustedPort, () => {
startHTTPServer(false, sandboxPort, () => {
privilegeHelpers.dropRootPrivileges();
startHTTPServer(AppType.TRUSTED, trustedPort, () => {
startHTTPServer(AppType.SANDBOXED, sandboxPort, () => {
startHTTPServer(AppType.PUBLIC, publicPort, () => {
privilegeHelpers.dropRootPrivileges();
tzupdate.start();
tzupdate.start();
importer.spawn(() => {
feedcheck.spawn(() => {
senders.spawn(() => {
//triggers(() => {
//postfixBounceServer(async () => {
importer.spawn(() => {
feedcheck.spawn(() => {
senders.spawn(() => {
//triggers(() => {
//postfixBounceServer(async () => {
(async () => {
await reportProcessor.init();
log.info('Service', 'All services started');
})();
//});
//});
//});
//});
});
});
});
});