diff options
-rw-r--r-- | config/default.yaml | 1 | ||||
-rw-r--r-- | config/production.yaml.example | 1 | ||||
-rw-r--r-- | server.ts | 5 | ||||
-rw-r--r-- | server/initializers/checker.ts | 2 | ||||
-rw-r--r-- | server/initializers/constants.ts | 3 | ||||
-rw-r--r-- | support/docker/production/config/production.yaml | 1 |
6 files changed, 9 insertions, 4 deletions
diff --git a/config/default.yaml b/config/default.yaml index bf772faf6..9f4a76621 100644 --- a/config/default.yaml +++ b/config/default.yaml | |||
@@ -1,4 +1,5 @@ | |||
1 | listen: | 1 | listen: |
2 | hostname: '127.0.0.1' | ||
2 | port: 9000 | 3 | port: 9000 |
3 | 4 | ||
4 | webserver: | 5 | webserver: |
diff --git a/config/production.yaml.example b/config/production.yaml.example index c963118d9..fc06c51fb 100644 --- a/config/production.yaml.example +++ b/config/production.yaml.example | |||
@@ -1,4 +1,5 @@ | |||
1 | listen: | 1 | listen: |
2 | hostname: 'localhost' | ||
2 | port: 9000 | 3 | port: 9000 |
3 | 4 | ||
4 | # Correspond to your reverse proxy "listen" configuration | 5 | # Correspond to your reverse proxy "listen" configuration |
@@ -194,6 +194,7 @@ app.use(function (err, req, res, next) { | |||
194 | 194 | ||
195 | async function startApplication () { | 195 | async function startApplication () { |
196 | const port = CONFIG.LISTEN.PORT | 196 | const port = CONFIG.LISTEN.PORT |
197 | const hostname = CONFIG.LISTEN.HOSTNAME | ||
197 | 198 | ||
198 | await installApplication() | 199 | await installApplication() |
199 | 200 | ||
@@ -214,7 +215,7 @@ async function startApplication () { | |||
214 | Redis.Instance.init() | 215 | Redis.Instance.init() |
215 | 216 | ||
216 | // Make server listening | 217 | // Make server listening |
217 | server.listen(port) | 218 | server.listen(port, hostname) |
218 | logger.info('Server listening on port %d', port) | 219 | logger.info('Server listening on %s:%d', hostname, port) |
219 | logger.info('Web server: %s', CONFIG.WEBSERVER.URL) | 220 | logger.info('Web server: %s', CONFIG.WEBSERVER.URL) |
220 | } | 221 | } |
diff --git a/server/initializers/checker.ts b/server/initializers/checker.ts index 45f1d79c3..71f303963 100644 --- a/server/initializers/checker.ts +++ b/server/initializers/checker.ts | |||
@@ -18,7 +18,7 @@ function checkConfig () { | |||
18 | 18 | ||
19 | // Check the config files | 19 | // Check the config files |
20 | function checkMissedConfig () { | 20 | function checkMissedConfig () { |
21 | const required = [ 'listen.port', | 21 | const required = [ 'listen.port', 'listen.hostname', |
22 | 'webserver.https', 'webserver.hostname', 'webserver.port', | 22 | 'webserver.https', 'webserver.hostname', 'webserver.port', |
23 | 'trust_proxy', | 23 | 'trust_proxy', |
24 | 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', | 24 | 'database.hostname', 'database.port', 'database.suffix', 'database.username', 'database.password', |
diff --git a/server/initializers/constants.ts b/server/initializers/constants.ts index 2622b2c71..56d39529e 100644 --- a/server/initializers/constants.ts +++ b/server/initializers/constants.ts | |||
@@ -86,7 +86,8 @@ let SCHEDULER_INTERVAL = 60000 * 60 | |||
86 | const CONFIG = { | 86 | const CONFIG = { |
87 | CUSTOM_FILE: getLocalConfigFilePath(), | 87 | CUSTOM_FILE: getLocalConfigFilePath(), |
88 | LISTEN: { | 88 | LISTEN: { |
89 | PORT: config.get<number>('listen.port') | 89 | PORT: config.get<number>('listen.port'), |
90 | HOSTNAME: config.get<string>('listen.hostname') | ||
90 | }, | 91 | }, |
91 | DATABASE: { | 92 | DATABASE: { |
92 | DBNAME: 'peertube' + config.get<string>('database.suffix'), | 93 | DBNAME: 'peertube' + config.get<string>('database.suffix'), |
diff --git a/support/docker/production/config/production.yaml b/support/docker/production/config/production.yaml index 7b6de32e5..8a58c5b16 100644 --- a/support/docker/production/config/production.yaml +++ b/support/docker/production/config/production.yaml | |||
@@ -1,4 +1,5 @@ | |||
1 | listen: | 1 | listen: |
2 | hostname: '127.0.0.1' | ||
2 | port: 9000 | 3 | port: 9000 |
3 | 4 | ||
4 | # Correspond to your reverse proxy "listen" configuration | 5 | # Correspond to your reverse proxy "listen" configuration |