defiant: update public nginx redirects
This commit is contained in:
parent
541602b594
commit
a6691418ec
|
@ -31,7 +31,7 @@
|
||||||
# Publicly exposed services:
|
# Publicly exposed services:
|
||||||
|
|
||||||
services.nginx.virtualHosts = let
|
services.nginx.virtualHosts = let
|
||||||
publicProxy = upstream: {
|
publicProxy = upstream: overrides: {
|
||||||
listen = [
|
listen = [
|
||||||
{ addr = "192.168.10.175"; port = 43443; ssl = true; }
|
{ addr = "192.168.10.175"; port = 43443; ssl = true; }
|
||||||
{ addr = "192.168.10.175"; port = 43080; ssl = false; }
|
{ addr = "192.168.10.175"; port = 43080; ssl = false; }
|
||||||
|
@ -49,11 +49,18 @@
|
||||||
|
|
||||||
server_tokens off;
|
server_tokens off;
|
||||||
'';
|
'';
|
||||||
};
|
} // overrides;
|
||||||
in {
|
in {
|
||||||
"auth.feal.no" = publicProxy "https://voyager.home.feal.no";
|
"auth.feal.no" = publicProxy "" {
|
||||||
"cloud.feal.no" = publicProxy "http://voyager.home.feal.no";
|
locations."/" = {
|
||||||
"git.feal.no" = publicProxy "http://unix:${config.services.gitea.settings.server.HTTP_ADDR}";
|
proxyPass = "https://voyager.home.feal.no:8300";
|
||||||
"jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/";
|
extraConfig = ''
|
||||||
|
proxy_ssl_verify off;
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
"cloud.feal.no" = publicProxy "http://voyager.home.feal.no" {};
|
||||||
|
"git.feal.no" = publicProxy "http://unix:${config.services.gitea.settings.server.HTTP_ADDR}" {};
|
||||||
|
"jf.feal.no" = publicProxy "http://jellyfin.home.feal.no/" {};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue