1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-05 02:39:33 +02:00

Server: host -> hostname (host = hostname + port)

This commit is contained in:
Chocobozzz 2016-10-23 19:41:17 +02:00
parent 2c49ca42d1
commit 3737bbafb1
16 changed files with 21 additions and 21 deletions

View file

@ -8,7 +8,7 @@ winston.emitErrs = true
const constants = require('../initializers/constants')
const label = constants.CONFIG.WEBSERVER.HOST + ':' + constants.CONFIG.WEBSERVER.PORT
const label = constants.CONFIG.WEBSERVER.HOSTNAME + ':' + constants.CONFIG.WEBSERVER.PORT
// Create the directory if it does not exist
mkdirp.sync(constants.CONFIG.STORAGE.LOG_DIR)