fix latest release
Signed-off-by: Zoey <zoey@z0ey.de>
This commit is contained in:
parent
55b173a744
commit
c943ccdd87
1 changed files with 2 additions and 1 deletions
|
@ -7,6 +7,7 @@ async function appStart () {
|
||||||
const setup = require('./setup');
|
const setup = require('./setup');
|
||||||
const app = require('./app');
|
const app = require('./app');
|
||||||
const apiValidator = require('./lib/validator/api');
|
const apiValidator = require('./lib/validator/api');
|
||||||
|
const internalNginx = require('./internal/nginx');
|
||||||
const internalCertificate = require('./internal/certificate');
|
const internalCertificate = require('./internal/certificate');
|
||||||
const internalIpRanges = require('./internal/ip_ranges');
|
const internalIpRanges = require('./internal/ip_ranges');
|
||||||
|
|
||||||
|
@ -17,7 +18,7 @@ async function appStart () {
|
||||||
})
|
})
|
||||||
.then(internalIpRanges.fetch)
|
.then(internalIpRanges.fetch)
|
||||||
.then(() => {
|
.then(() => {
|
||||||
|
internalNginx.reload();
|
||||||
internalCertificate.initTimer();
|
internalCertificate.initTimer();
|
||||||
internalIpRanges.initTimer();
|
internalIpRanges.initTimer();
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue