defiant/nginx: Fix broken git-default. Temporarily disable nextcloud

This commit is contained in:
Felix Albrigtsen 2024-09-25 19:28:45 +02:00
parent 85ea8f5ac3
commit bfcb4f7dce
1 changed files with 13 additions and 13 deletions

View File

@ -12,8 +12,6 @@ in {
recommendedGzipSettings = true; recommendedGzipSettings = true;
recommendedOptimisation = true; recommendedOptimisation = true;
virtualHosts."git.feal.no".default = true;
defaultListen = [ defaultListen = [
{ {
addr = "192.168.10.175"; addr = "192.168.10.175";
@ -56,17 +54,19 @@ in {
''; '';
} // overrides; } // overrides;
in { in {
"cloud.feal.no" = publicProxy "" { # "cloud.feal.no" = publicProxy "" {
locations."/" = { # locations."/" = {
proxyPass = "http://challenger.home.feal.no"; # proxyPass = "http://challenger.home.feal.no";
extraConfig = '' # extraConfig = ''
client_max_body_size 8G; # client_max_body_size 8G;
''; # '';
}; # };
# };
"git.feal.no" = publicProxy "http://unix:${gitea.server.HTTP_ADDR}" {
default = true;
}; };
"git.feal.no" = publicProxy "http://unix:${gitea.server.HTTP_ADDR}" {}; "jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" { };
"jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" {}; "iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" { };
"iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" {}; "music.feal.no" = publicProxy "http://challenger.home.feal.no/" { };
"music.feal.no" = publicProxy "http://challenger.home.feal.no/" {};
}; };
} }