upstream1: move gemini port forwarding to upstream4 proper

This commit is contained in:
Astro 2022-03-05 01:07:04 +01:00
parent f49b08a8d2
commit fc0241a87d
1 changed files with 8 additions and 8 deletions

View File

@ -19,12 +19,6 @@ in
reflect = true;
sourcePort = 443;
}
{ # gemini
destination = "${servHosts.c3d2-web}:1965";
proto = "tcp";
reflect = true;
sourcePort = 1965;
}
{
destination = dn42;
proto = "udp";
@ -185,18 +179,24 @@ in
upstream4 = {
forwardPorts = [
{
{ # http
destination = "172.20.73.45";
proto = "tcp";
reflect = true;
sourcePort = 80;
}
{
{ # https
destination = "172.20.73.45";
proto = "tcp";
reflect = true;
sourcePort = 443;
}
{ # gemini
destination = "${servHosts.c3d2-web}:1965";
proto = "tcp";
reflect = true;
sourcePort = 1965;
}
{
destination = "172.20.73.61";
proto = "tcp";