mirror of
https://github.com/zadam/trilium.git
synced 2024-12-26 01:01:26 +08:00
docker_healthcheck.js should not create log files, #3677
This commit is contained in:
parent
2699c995ee
commit
0b24011468
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
const http = require("http");
|
||||
const config = require("./src/services/config");
|
||||
const ini = require("ini");
|
||||
const fs = require("fs");
|
||||
const dataDir = require("./src/services/data_dir");
|
||||
const config = ini.parse(fs.readFileSync(dataDir.CONFIG_INI_PATH, 'utf-8'));
|
||||
|
||||
if (config.https) {
|
||||
// built-in TLS (terminated by trilium) is not supported yet, PRs are welcome
|
||||
|
|
Loading…
Reference in a new issue