We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 55b173a commit c943ccdCopy full SHA for c943ccd
backend/index.js
@@ -7,6 +7,7 @@ async function appStart () {
7
const setup = require('./setup');
8
const app = require('./app');
9
const apiValidator = require('./lib/validator/api');
10
+ const internalNginx = require('./internal/nginx');
11
const internalCertificate = require('./internal/certificate');
12
const internalIpRanges = require('./internal/ip_ranges');
13
@@ -17,7 +18,7 @@ async function appStart () {
17
18
})
19
.then(internalIpRanges.fetch)
20
.then(() => {
-
21
+ internalNginx.reload();
22
internalCertificate.initTimer();
23
internalIpRanges.initTimer();
24
0 commit comments