diff --git a/hosts/defiant/services/keycloak.nix b/hosts/defiant/services/keycloak.nix index 23da159..1912454 100644 --- a/hosts/defiant/services/keycloak.nix +++ b/hosts/defiant/services/keycloak.nix @@ -2,7 +2,6 @@ let cfg = config.services.keycloak.settings; in { - environment.noXlibs = false; sops.secrets."keycloak/postgres" = { }; services.keycloak = { diff --git a/hosts/defiant/services/nginx.nix b/hosts/defiant/services/nginx.nix index c3042fd..0b6c87a 100644 --- a/hosts/defiant/services/nginx.nix +++ b/hosts/defiant/services/nginx.nix @@ -62,7 +62,14 @@ in { ''; }; }; - "cloud.feal.no" = publicProxy "http://voyager.home.feal.no" {}; + "cloud.feal.no" = publicProxy "" { + locations."/" = { + proxyPass = "http://voyager.home.feal.no"; + extraConfig = '' + client_max_body_size 8G; + ''; + }; + }; "git.feal.no" = publicProxy "http://unix:${gitea.server.HTTP_ADDR}" {}; "jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" {}; "iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" {};