Use a number instead of boolean

This commit is contained in:
niten 2023-07-18 11:27:56 -07:00
parent 48d0ae68f7
commit 280de4893d
1 changed files with 1 additions and 1 deletions

View File

@ -309,7 +309,7 @@ in {
source-file = makeEnvFile { source-file = makeEnvFile {
LEMMY_UI_LEMMY_INTERNAL_HOST = "lemmy:8536"; LEMMY_UI_LEMMY_INTERNAL_HOST = "lemmy:8536";
LEMMY_UI_LEMMY_EXTERNAL_HOST = cfg.hostname; LEMMY_UI_LEMMY_EXTERNAL_HOST = cfg.hostname;
LEMMY_UI_HTTPS = false; LEMMY_UI_HTTPS = 0;
}; };
target-file = "/run/lemmy/lemmy-ui.env"; target-file = "/run/lemmy/lemmy-ui.env";
}; };