2019-10-21 17:13:07 +02:00
|
|
|
import { registerTSPaths } from './server/helpers/register-ts-paths'
|
|
|
|
registerTSPaths()
|
2019-07-05 15:28:49 +02:00
|
|
|
|
2017-06-11 15:19:43 +02:00
|
|
|
import { isTestInstance } from './server/helpers/core-utils'
|
|
|
|
if (isTestInstance()) {
|
2017-05-22 20:58:25 +02:00
|
|
|
require('source-map-support').install()
|
|
|
|
}
|
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// ----------- Node modules -----------
|
2021-08-27 14:32:44 +02:00
|
|
|
import express from 'express'
|
|
|
|
import morgan, { token } from 'morgan'
|
|
|
|
import cors from 'cors'
|
|
|
|
import cookieParser from 'cookie-parser'
|
|
|
|
import { frameguard } from 'helmet'
|
|
|
|
import { parse } from 'useragent'
|
|
|
|
import anonymize from 'ip-anonymize'
|
2021-06-25 17:39:27 +02:00
|
|
|
import { program as cli } from 'commander'
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2016-10-21 14:23:20 +02:00
|
|
|
process.title = 'peertube'
|
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// Create our main app
|
2020-12-09 04:18:44 +01:00
|
|
|
const app = express().disable("x-powered-by")
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// ----------- Core checker -----------
|
2019-08-07 12:04:06 +02:00
|
|
|
import { checkMissedConfig, checkFFmpeg, checkNodeVersion } from './server/initializers/checker-before-init'
|
2016-07-01 16:03:53 +02:00
|
|
|
|
2018-03-26 15:54:13 +02:00
|
|
|
// Do not use barrels because we don't want to load all modules here (we need to initialize database first)
|
2019-04-11 14:26:41 +02:00
|
|
|
import { CONFIG } from './server/initializers/config'
|
2019-07-04 16:42:40 +02:00
|
|
|
import { API_VERSION, FILES_CACHE, WEBSERVER, loadLanguages } from './server/initializers/constants'
|
|
|
|
import { logger } from './server/helpers/logger'
|
2018-03-26 15:54:13 +02:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
const missed = checkMissedConfig()
|
2016-11-01 19:46:07 +01:00
|
|
|
if (missed.length !== 0) {
|
2018-03-26 15:54:13 +02:00
|
|
|
logger.error('Your configuration files miss keys: ' + missed)
|
|
|
|
process.exit(-1)
|
2016-11-01 19:46:07 +01:00
|
|
|
}
|
2017-08-26 09:17:20 +02:00
|
|
|
|
|
|
|
checkFFmpeg(CONFIG)
|
2018-03-26 15:54:13 +02:00
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error in ffmpeg check.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
2016-11-01 19:46:07 +01:00
|
|
|
|
2019-08-07 12:04:06 +02:00
|
|
|
checkNodeVersion()
|
|
|
|
|
2021-03-11 09:51:08 +01:00
|
|
|
import { checkConfig, checkActivityPubUrls, checkFFmpegVersion } from './server/initializers/checker-after-init'
|
2018-09-24 13:07:33 +02:00
|
|
|
|
2017-05-15 22:22:03 +02:00
|
|
|
const errorMessage = checkConfig()
|
2016-11-01 19:46:07 +01:00
|
|
|
if (errorMessage !== null) {
|
|
|
|
throw new Error(errorMessage)
|
2016-07-01 16:03:53 +02:00
|
|
|
}
|
|
|
|
|
2018-03-29 10:58:24 +02:00
|
|
|
// Trust our proxy (IP forwarding...)
|
|
|
|
app.set('trust proxy', CONFIG.TRUST_PROXY)
|
|
|
|
|
2018-07-19 16:17:54 +02:00
|
|
|
// Security middleware
|
2019-02-26 10:55:40 +01:00
|
|
|
import { baseCSP } from './server/middlewares/csp'
|
2018-12-13 09:49:45 +01:00
|
|
|
|
2019-02-21 16:27:32 +01:00
|
|
|
if (CONFIG.CSP.ENABLED) {
|
|
|
|
app.use(baseCSP)
|
2021-04-12 15:33:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (CONFIG.SECURITY.FRAMEGUARD.ENABLED) {
|
2021-08-27 14:32:44 +02:00
|
|
|
app.use(frameguard({
|
2021-04-12 15:33:54 +02:00
|
|
|
action: 'deny' // we only allow it for /videos/embed, see server/controllers/client.ts
|
2019-02-21 16:27:32 +01:00
|
|
|
}))
|
|
|
|
}
|
2018-07-16 09:02:08 +02:00
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// ----------- Database -----------
|
2017-12-13 17:46:23 +01:00
|
|
|
|
2017-08-26 09:17:20 +02:00
|
|
|
// Initialize database and models
|
2020-08-24 14:11:15 +02:00
|
|
|
import { initDatabaseModels, checkDatabaseConnectionOrDie } from './server/initializers/database'
|
|
|
|
checkDatabaseConnectionOrDie()
|
|
|
|
|
2017-12-13 17:46:23 +01:00
|
|
|
import { migrate } from './server/initializers/migrator'
|
|
|
|
migrate()
|
|
|
|
.then(() => initDatabaseModels(false))
|
2018-04-04 11:04:14 +02:00
|
|
|
.then(() => startApplication())
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Cannot start application.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
2017-08-26 09:17:20 +02:00
|
|
|
|
2019-04-11 14:26:41 +02:00
|
|
|
// ----------- Initialize -----------
|
|
|
|
loadLanguages()
|
|
|
|
|
2016-06-28 20:10:32 +02:00
|
|
|
// ----------- PeerTube modules -----------
|
2020-05-07 14:58:24 +02:00
|
|
|
import { installApplication } from './server/initializers/installer'
|
2018-01-30 13:27:07 +01:00
|
|
|
import { Emailer } from './server/lib/emailer'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { JobQueue } from './server/lib/job-queue'
|
2019-03-19 14:23:17 +01:00
|
|
|
import { VideosPreviewCache, VideosCaptionCache } from './server/lib/files-cache'
|
2018-04-17 00:49:04 +02:00
|
|
|
import {
|
|
|
|
activityPubRouter,
|
|
|
|
apiRouter,
|
|
|
|
clientsRouter,
|
|
|
|
feedsRouter,
|
|
|
|
staticRouter,
|
2019-08-09 11:32:40 +02:00
|
|
|
lazyStaticRouter,
|
2018-04-17 00:49:04 +02:00
|
|
|
servicesRouter,
|
2020-09-17 09:20:52 +02:00
|
|
|
liveRouter,
|
2019-07-05 13:54:32 +02:00
|
|
|
pluginsRouter,
|
2018-06-26 16:53:24 +02:00
|
|
|
webfingerRouter,
|
|
|
|
trackerRouter,
|
2020-09-17 09:20:52 +02:00
|
|
|
createWebsocketTrackerServer,
|
2021-02-16 16:25:53 +01:00
|
|
|
botsRouter,
|
|
|
|
downloadRouter
|
2018-04-17 00:49:04 +02:00
|
|
|
} from './server/controllers'
|
2018-08-03 02:02:01 +02:00
|
|
|
import { advertiseDoNotTrack } from './server/middlewares/dnt'
|
2021-06-02 18:15:41 +02:00
|
|
|
import { apiFailMiddleware } from './server/middlewares/error'
|
2018-01-30 13:27:07 +01:00
|
|
|
import { Redis } from './server/lib/redis'
|
2018-12-20 14:31:11 +01:00
|
|
|
import { ActorFollowScheduler } from './server/lib/schedulers/actor-follow-scheduler'
|
2019-04-11 17:33:36 +02:00
|
|
|
import { RemoveOldViewsScheduler } from './server/lib/schedulers/remove-old-views-scheduler'
|
2018-01-25 15:05:18 +01:00
|
|
|
import { RemoveOldJobsScheduler } from './server/lib/schedulers/remove-old-jobs-scheduler'
|
2018-06-14 18:06:56 +02:00
|
|
|
import { UpdateVideosScheduler } from './server/lib/schedulers/update-videos-scheduler'
|
2018-08-02 16:02:51 +02:00
|
|
|
import { YoutubeDlUpdateScheduler } from './server/lib/schedulers/youtube-dl-update-scheduler'
|
2018-09-11 16:27:07 +02:00
|
|
|
import { VideosRedundancyScheduler } from './server/lib/schedulers/videos-redundancy-scheduler'
|
2019-04-11 15:38:53 +02:00
|
|
|
import { RemoveOldHistoryScheduler } from './server/lib/schedulers/remove-old-history-scheduler'
|
2019-09-04 11:18:33 +02:00
|
|
|
import { AutoFollowIndexInstances } from './server/lib/schedulers/auto-follow-index-instances'
|
2021-05-10 11:13:41 +02:00
|
|
|
import { RemoveDanglingResumableUploadsScheduler } from './server/lib/schedulers/remove-dangling-resumable-uploads-scheduler'
|
2018-10-23 11:38:48 +02:00
|
|
|
import { isHTTPSignatureDigestValid } from './server/helpers/peertube-crypto'
|
2018-12-26 10:36:24 +01:00
|
|
|
import { PeerTubeSocket } from './server/lib/peertube-socket'
|
2019-04-08 11:13:49 +02:00
|
|
|
import { updateStreamingPlaylistsInfohashesIfNeeded } from './server/lib/hls'
|
2019-07-16 14:52:24 +02:00
|
|
|
import { PluginsCheckScheduler } from './server/lib/schedulers/plugins-check-scheduler'
|
2021-03-11 16:54:52 +01:00
|
|
|
import { PeerTubeVersionCheckScheduler } from './server/lib/schedulers/peertube-version-check-scheduler'
|
2019-07-19 17:30:41 +02:00
|
|
|
import { Hooks } from './server/lib/plugins/hooks'
|
2019-10-21 16:02:15 +02:00
|
|
|
import { PluginManager } from './server/lib/plugins/plugin-manager'
|
2021-06-16 15:14:41 +02:00
|
|
|
import { LiveManager } from './server/lib/live'
|
2021-07-16 10:42:24 +02:00
|
|
|
import { HttpStatusCode } from './shared/models/http/http-error-codes'
|
2021-02-16 16:25:53 +01:00
|
|
|
import { VideosTorrentCache } from '@server/lib/files-cache/videos-torrent-cache'
|
2021-05-27 15:59:55 +02:00
|
|
|
import { ServerConfigManager } from '@server/lib/server-config-manager'
|
2016-02-07 11:47:30 +01:00
|
|
|
|
|
|
|
// ----------- Command line -----------
|
|
|
|
|
2018-11-14 15:27:47 +01:00
|
|
|
cli
|
|
|
|
.option('--no-client', 'Start PeerTube without client interface')
|
2019-07-17 15:49:40 +02:00
|
|
|
.option('--no-plugins', 'Start PeerTube without plugins/themes enabled')
|
2018-11-14 15:27:47 +01:00
|
|
|
.parse(process.argv)
|
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// ----------- App -----------
|
|
|
|
|
2018-06-29 05:23:26 +02:00
|
|
|
// Enable CORS for develop
|
|
|
|
if (isTestInstance()) {
|
2018-07-17 15:04:54 +02:00
|
|
|
app.use(cors({
|
|
|
|
origin: '*',
|
|
|
|
exposedHeaders: 'Retry-After',
|
|
|
|
credentials: true
|
|
|
|
}))
|
2018-06-29 05:23:26 +02:00
|
|
|
}
|
2019-04-11 14:26:41 +02:00
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// For the logger
|
2021-08-27 14:32:44 +02:00
|
|
|
token('remote-addr', (req: express.Request) => {
|
2019-12-12 17:15:38 +01:00
|
|
|
if (CONFIG.LOG.ANONYMIZE_IP === true || req.get('DNT') === '1') {
|
2019-04-11 14:26:41 +02:00
|
|
|
return anonymize(req.ip, 16, 16)
|
|
|
|
}
|
|
|
|
|
|
|
|
return req.ip
|
|
|
|
})
|
2021-08-27 14:32:44 +02:00
|
|
|
token('user-agent', (req: express.Request) => {
|
2019-04-11 14:26:41 +02:00
|
|
|
if (req.get('DNT') === '1') {
|
2021-08-27 14:32:44 +02:00
|
|
|
return parse(req.get('user-agent')).family
|
2019-04-11 14:26:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return req.get('user-agent')
|
2018-08-03 02:02:01 +02:00
|
|
|
})
|
2017-05-22 20:58:25 +02:00
|
|
|
app.use(morgan('combined', {
|
2021-03-05 13:26:02 +01:00
|
|
|
stream: {
|
2021-07-05 17:47:21 +02:00
|
|
|
write: (str: string) => logger.info(str.trim(), { tags: [ 'http' ] })
|
2021-03-05 13:26:02 +01:00
|
|
|
},
|
2021-01-13 09:38:19 +01:00
|
|
|
skip: req => CONFIG.LOG.LOG_PING_REQUESTS === false && req.originalUrl === '/api/v1/ping'
|
2017-05-22 20:58:25 +02:00
|
|
|
}))
|
2019-04-11 14:26:41 +02:00
|
|
|
|
2021-06-02 18:15:41 +02:00
|
|
|
// Add .fail() helper to response
|
|
|
|
app.use(apiFailMiddleware)
|
2021-06-01 13:25:41 +02:00
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// For body requests
|
2021-06-01 13:25:41 +02:00
|
|
|
app.use(express.urlencoded({ extended: false }))
|
|
|
|
app.use(express.json({
|
2017-11-29 13:18:05 +01:00
|
|
|
type: [ 'application/json', 'application/*+json' ],
|
2018-10-23 11:38:48 +02:00
|
|
|
limit: '500kb',
|
2021-06-01 13:25:41 +02:00
|
|
|
verify: (req: express.Request, res: express.Response, buf: Buffer) => {
|
2018-10-23 11:38:48 +02:00
|
|
|
const valid = isHTTPSignatureDigestValid(buf, req)
|
2021-06-02 18:15:41 +02:00
|
|
|
|
2021-06-01 13:25:41 +02:00
|
|
|
if (valid !== true) {
|
|
|
|
res.fail({
|
|
|
|
status: HttpStatusCode.FORBIDDEN_403,
|
|
|
|
message: 'Invalid digest'
|
|
|
|
})
|
|
|
|
}
|
2018-10-23 11:38:48 +02:00
|
|
|
}
|
2017-11-29 11:34:44 +01:00
|
|
|
}))
|
2019-04-11 14:26:41 +02:00
|
|
|
|
2018-06-28 13:59:48 +02:00
|
|
|
// Cookies
|
|
|
|
app.use(cookieParser())
|
2019-04-11 14:26:41 +02:00
|
|
|
|
2018-08-03 02:02:01 +02:00
|
|
|
// W3C DNT Tracking Status
|
|
|
|
app.use(advertiseDoNotTrack)
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2017-10-19 14:58:28 +02:00
|
|
|
// ----------- Views, routes and static files -----------
|
|
|
|
|
|
|
|
// API
|
|
|
|
const apiRoute = '/api/' + API_VERSION
|
|
|
|
app.use(apiRoute, apiRouter)
|
|
|
|
|
|
|
|
// Services (oembed...)
|
|
|
|
app.use('/services', servicesRouter)
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
// Live streaming
|
|
|
|
app.use('/live', liveRouter)
|
|
|
|
|
2019-07-05 13:54:32 +02:00
|
|
|
// Plugins & themes
|
2019-07-12 11:39:58 +02:00
|
|
|
app.use('/', pluginsRouter)
|
2019-07-05 13:54:32 +02:00
|
|
|
|
2017-11-14 17:31:26 +01:00
|
|
|
app.use('/', activityPubRouter)
|
2018-04-17 00:49:04 +02:00
|
|
|
app.use('/', feedsRouter)
|
|
|
|
app.use('/', webfingerRouter)
|
2018-06-26 16:53:24 +02:00
|
|
|
app.use('/', trackerRouter)
|
2018-12-05 17:27:24 +01:00
|
|
|
app.use('/', botsRouter)
|
2017-11-14 17:31:26 +01:00
|
|
|
|
2017-10-19 14:58:28 +02:00
|
|
|
// Static files
|
|
|
|
app.use('/', staticRouter)
|
2021-02-16 16:25:53 +01:00
|
|
|
app.use('/', downloadRouter)
|
2019-08-09 11:32:40 +02:00
|
|
|
app.use('/', lazyStaticRouter)
|
2017-10-19 14:58:28 +02:00
|
|
|
|
2018-05-31 18:12:15 +02:00
|
|
|
// Client files, last valid routes!
|
2021-02-03 09:33:05 +01:00
|
|
|
const cliOptions = cli.opts()
|
|
|
|
if (cliOptions.client) app.use('/', clientsRouter)
|
2017-10-19 14:58:28 +02:00
|
|
|
|
2016-02-07 11:47:30 +01:00
|
|
|
// ----------- Errors -----------
|
|
|
|
|
2021-06-01 13:25:41 +02:00
|
|
|
// Catch unmatched routes
|
|
|
|
app.use((req, res: express.Response) => {
|
|
|
|
res.status(HttpStatusCode.NOT_FOUND_404).end()
|
2016-02-07 11:47:30 +01:00
|
|
|
})
|
|
|
|
|
2021-06-01 13:25:41 +02:00
|
|
|
// Catch thrown errors
|
|
|
|
app.use((err, req, res: express.Response, next) => {
|
|
|
|
// Format error to be logged
|
2018-02-14 15:33:49 +01:00
|
|
|
let error = 'Unknown error.'
|
|
|
|
if (err) {
|
|
|
|
error = err.stack || err.message || err
|
|
|
|
}
|
2021-06-01 13:25:41 +02:00
|
|
|
// Handling Sequelize error traces
|
2018-08-31 11:43:46 +02:00
|
|
|
const sql = err.parent ? err.parent.sql : undefined
|
|
|
|
logger.error('Error in controller.', { err: error, sql })
|
2021-06-01 13:25:41 +02:00
|
|
|
|
2021-06-01 01:36:53 +02:00
|
|
|
return res.fail({
|
|
|
|
status: err.status || HttpStatusCode.INTERNAL_SERVER_ERROR_500,
|
|
|
|
message: err.message,
|
|
|
|
type: err.name
|
|
|
|
})
|
2016-03-07 14:48:46 +01:00
|
|
|
})
|
2016-02-07 11:47:30 +01:00
|
|
|
|
2018-12-26 10:36:24 +01:00
|
|
|
const server = createWebsocketTrackerServer(app)
|
2018-06-26 16:53:24 +02:00
|
|
|
|
2016-11-25 12:32:21 +01:00
|
|
|
// ----------- Run -----------
|
|
|
|
|
2018-04-04 11:04:14 +02:00
|
|
|
async function startApplication () {
|
2017-05-15 22:22:03 +02:00
|
|
|
const port = CONFIG.LISTEN.PORT
|
2018-04-17 11:14:32 +02:00
|
|
|
const hostname = CONFIG.LISTEN.HOSTNAME
|
2017-12-13 17:46:23 +01:00
|
|
|
|
2018-04-04 11:04:14 +02:00
|
|
|
await installApplication()
|
|
|
|
|
2018-06-21 18:29:28 +02:00
|
|
|
// Check activity pub urls are valid
|
|
|
|
checkActivityPubUrls()
|
|
|
|
.catch(err => {
|
|
|
|
logger.error('Error in ActivityPub URLs checker.', { err })
|
|
|
|
process.exit(-1)
|
|
|
|
})
|
|
|
|
|
2021-03-11 09:51:08 +01:00
|
|
|
checkFFmpegVersion()
|
|
|
|
.catch(err => logger.error('Cannot check ffmpeg version', { err }))
|
|
|
|
|
2018-04-04 11:04:14 +02:00
|
|
|
// Email initialization
|
|
|
|
Emailer.Instance.init()
|
|
|
|
|
2018-11-19 15:21:09 +01:00
|
|
|
await Promise.all([
|
2020-12-11 21:02:32 +01:00
|
|
|
Emailer.Instance.checkConnection(),
|
2021-05-27 15:59:55 +02:00
|
|
|
JobQueue.Instance.init(),
|
|
|
|
ServerConfigManager.Instance.init()
|
2018-11-19 15:21:09 +01:00
|
|
|
])
|
2018-04-04 11:04:14 +02:00
|
|
|
|
|
|
|
// Caches initializations
|
2019-03-19 14:23:17 +01:00
|
|
|
VideosPreviewCache.Instance.init(CONFIG.CACHE.PREVIEWS.SIZE, FILES_CACHE.PREVIEWS.MAX_AGE)
|
|
|
|
VideosCaptionCache.Instance.init(CONFIG.CACHE.VIDEO_CAPTIONS.SIZE, FILES_CACHE.VIDEO_CAPTIONS.MAX_AGE)
|
2021-02-16 16:25:53 +01:00
|
|
|
VideosTorrentCache.Instance.init(CONFIG.CACHE.TORRENTS.SIZE, FILES_CACHE.TORRENTS.MAX_AGE)
|
2018-04-04 11:04:14 +02:00
|
|
|
|
|
|
|
// Enable Schedulers
|
2018-12-20 14:31:11 +01:00
|
|
|
ActorFollowScheduler.Instance.enable()
|
2018-04-04 11:04:14 +02:00
|
|
|
RemoveOldJobsScheduler.Instance.enable()
|
2018-06-14 18:06:56 +02:00
|
|
|
UpdateVideosScheduler.Instance.enable()
|
2018-08-02 16:02:51 +02:00
|
|
|
YoutubeDlUpdateScheduler.Instance.enable()
|
2018-09-11 16:27:07 +02:00
|
|
|
VideosRedundancyScheduler.Instance.enable()
|
2019-04-11 15:38:53 +02:00
|
|
|
RemoveOldHistoryScheduler.Instance.enable()
|
2019-04-11 17:33:36 +02:00
|
|
|
RemoveOldViewsScheduler.Instance.enable()
|
2019-07-16 14:52:24 +02:00
|
|
|
PluginsCheckScheduler.Instance.enable()
|
2021-03-11 16:54:52 +01:00
|
|
|
PeerTubeVersionCheckScheduler.Instance.enable()
|
2019-09-04 11:18:33 +02:00
|
|
|
AutoFollowIndexInstances.Instance.enable()
|
2021-05-10 11:13:41 +02:00
|
|
|
RemoveDanglingResumableUploadsScheduler.Instance.enable()
|
2018-04-04 11:04:14 +02:00
|
|
|
|
|
|
|
// Redis initialization
|
|
|
|
Redis.Instance.init()
|
|
|
|
|
2018-12-26 10:36:24 +01:00
|
|
|
PeerTubeSocket.Instance.init(server)
|
|
|
|
|
2019-04-08 11:13:49 +02:00
|
|
|
updateStreamingPlaylistsInfohashesIfNeeded()
|
|
|
|
.catch(err => logger.error('Cannot update streaming playlist infohashes.', { err }))
|
|
|
|
|
2020-09-17 09:20:52 +02:00
|
|
|
LiveManager.Instance.init()
|
|
|
|
if (CONFIG.LIVE.ENABLED) LiveManager.Instance.run()
|
|
|
|
|
2018-04-04 11:04:14 +02:00
|
|
|
// Make server listening
|
2021-07-21 15:56:49 +02:00
|
|
|
server.listen(port, hostname, async () => {
|
|
|
|
if (cliOptions.plugins) {
|
|
|
|
try {
|
|
|
|
await PluginManager.Instance.registerPluginsAndThemes()
|
|
|
|
} catch (err) {
|
|
|
|
logger.error('Cannot register plugins and themes.', { err })
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-11 09:33:14 +01:00
|
|
|
logger.info('HTTP server listening on %s:%d', hostname, port)
|
2019-04-11 14:26:41 +02:00
|
|
|
logger.info('Web server: %s', WEBSERVER.URL)
|
2019-07-08 15:58:35 +02:00
|
|
|
|
2019-07-19 17:30:41 +02:00
|
|
|
Hooks.runAction('action:application.listening')
|
2018-04-18 16:04:49 +02:00
|
|
|
})
|
2018-07-30 18:49:54 +02:00
|
|
|
|
|
|
|
process.on('exit', () => {
|
|
|
|
JobQueue.Instance.terminate()
|
|
|
|
})
|
|
|
|
|
|
|
|
process.on('SIGINT', () => process.exit(0))
|
2017-02-18 11:56:28 +01:00
|
|
|
}
|