1
0
Fork 0

Fixed nginx conf reader

refactor/models
Bsian 2019-10-28 22:09:15 +00:00
parent bd14446390
commit 6992d88a3f
No known key found for this signature in database
GPG Key ID: 097FB9A291026091
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ export default class CWG extends Command {
if (!await this.client.db.Account.exists({ userID: account.userID })) throw new Error(`Cannot find account ${account.userID}.`);
await fs.access(x509Certificate.cert, fs.constants.R_OK);
await fs.access(x509Certificate.key, fs.constants.R_OK);
let cfg = await fs.readFile('./static/nginx.conf', { encoding: 'utf8' });
let cfg = await fs.readFile('../static/nginx.conf', { encoding: 'utf8' });
cfg = cfg.replace(/\[DOMAIN]/g, domain);
cfg = cfg.replace(/\[PORT]/g, String(port));
cfg = cfg.replace(/\[CERTIFICATE]/g, x509Certificate.cert);