early fail if old password variable (#1350)

This commit is contained in:
Bernd Storath
2024-09-04 18:37:11 +02:00
committed by GitHub
parent 3f6b6f3c9b
commit 4ba7dc244c
3 changed files with 8 additions and 1 deletions

View File

@@ -29,6 +29,7 @@ const {
PORT,
WEBUI_HOST,
RELEASE,
PASSWORD,
PASSWORD_HASH,
MAX_AGE,
LANG,
@@ -428,6 +429,10 @@ module.exports = class Server {
}),
);
if (PASSWORD) {
throw new Error('DO NOT USE PASSWORD ENVIRONMENT VARIABLE. USE PASSWORD_HASH INSTEAD.\nSee https://github.com/wg-easy/wg-easy/blob/master/How_to_generate_an_bcrypt_hash.md');
}
createServer(toNodeListener(app)).listen(PORT, WEBUI_HOST);
debug(`Listening on http://${WEBUI_HOST}:${PORT}`);