diff options
author | reverite <samantha@chalker.io> | 2019-03-15 05:54:30 -0700 |
---|---|---|
committer | reverite <samantha@chalker.io> | 2019-03-15 05:54:30 -0700 |
commit | 75eeb003b09c53d3b4e98046d1c20b0ad8a887bb (patch) | |
tree | d2ae669ee583c613a474f8698b7ea718da803819 /streaming/index.js | |
parent | 41d1369391d70a9cd25bdf96cfe567975793ef5a (diff) | |
parent | c2fa0f7c40bcc4064e8baaa221665eadd391c001 (diff) |
Merge remote-tracking branch 'glitch/master' into production
Diffstat (limited to 'streaming/index.js')
-rw-r--r-- | streaming/index.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/streaming/index.js b/streaming/index.js index bf7218e8a..d4fb8cad3 100644 --- a/streaming/index.js +++ b/streaming/index.js @@ -105,7 +105,8 @@ const startWorker = (workerId) => { pgConfigs.development.ssl = true; pgConfigs.production.ssl = true; } - const app = express(); + + const app = express(); app.set('trusted proxy', process.env.TRUSTED_PROXY_IP || 'loopback,uniquelocal'); const pgPool = new pg.Pool(Object.assign(pgConfigs[env], dbUrlToConfig(process.env.DATABASE_URL))); |