Ugh, lemmy-ui env file wasn't present on the host
This commit is contained in:
parent
0f60b4d89d
commit
6c97aaaee9
|
@ -303,6 +303,14 @@ in {
|
||||||
};
|
};
|
||||||
target-file = "/run/lemmy/postgres.env";
|
target-file = "/run/lemmy/postgres.env";
|
||||||
};
|
};
|
||||||
|
lemmyUiEnv = {
|
||||||
|
source-file = makeEnvFile {
|
||||||
|
LEMMY_UI_LEMMY_INTERNAL_HOST = "lemmy:8536";
|
||||||
|
LEMMY_UI_LEMMY_EXTERNAL_HOST = cfg.hostname;
|
||||||
|
LEMMY_UI_HTTPS = false;
|
||||||
|
};
|
||||||
|
target-file = "/run/lemmy/lemmy-ui.env";
|
||||||
|
};
|
||||||
lemmyCfg = {
|
lemmyCfg = {
|
||||||
source-file = makeLemmyCfg {
|
source-file = makeLemmyCfg {
|
||||||
inherit (cfg) hostname;
|
inherit (cfg) hostname;
|
||||||
|
@ -362,11 +370,7 @@ in {
|
||||||
};
|
};
|
||||||
lemmyUiCfg = {
|
lemmyUiCfg = {
|
||||||
image = cfg.docker-images.lemmy-ui;
|
image = cfg.docker-images.lemmy-ui;
|
||||||
envFile = makeEnvFile {
|
envFile = hostSecrets.lemmyUiEnv.target-file;
|
||||||
LEMMY_UI_LEMMY_INTERNAL_HOST = "lemmy:8536";
|
|
||||||
LEMMY_UI_LEMMY_EXTERNAL_HOST = cfg.hostname;
|
|
||||||
LEMMY_UI_HTTPS = false;
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
pictrsCfg = {
|
pictrsCfg = {
|
||||||
image = cfg.docker-images.pictrs;
|
image = cfg.docker-images.pictrs;
|
||||||
|
|
Loading…
Reference in New Issue