defiant/nginx: Fix broken git-default. Temporarily disable nextcloud
This commit is contained in:
parent
85ea8f5ac3
commit
bfcb4f7dce
|
@ -12,8 +12,6 @@ in {
|
|||
recommendedGzipSettings = true;
|
||||
recommendedOptimisation = true;
|
||||
|
||||
virtualHosts."git.feal.no".default = true;
|
||||
|
||||
defaultListen = [
|
||||
{
|
||||
addr = "192.168.10.175";
|
||||
|
@ -56,17 +54,19 @@ in {
|
|||
'';
|
||||
} // overrides;
|
||||
in {
|
||||
"cloud.feal.no" = publicProxy "" {
|
||||
locations."/" = {
|
||||
proxyPass = "http://challenger.home.feal.no";
|
||||
extraConfig = ''
|
||||
client_max_body_size 8G;
|
||||
'';
|
||||
};
|
||||
# "cloud.feal.no" = publicProxy "" {
|
||||
# locations."/" = {
|
||||
# proxyPass = "http://challenger.home.feal.no";
|
||||
# extraConfig = ''
|
||||
# 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/" {};
|
||||
"iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" {};
|
||||
"music.feal.no" = publicProxy "http://challenger.home.feal.no/" {};
|
||||
"jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" { };
|
||||
"iam.feal.no" = publicProxy "http://${keycloak.http-host}:${toString keycloak.http-port}" { };
|
||||
"music.feal.no" = publicProxy "http://challenger.home.feal.no/" { };
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue