19 lines
524 B
Nix
19 lines
524 B
Nix
# SPDX-FileCopyrightText: 2024 Maurice Debray <maurice.debray@dgnum.eu>
|
|
#
|
|
# SPDX-License-Identifier: EUPL-1.2
|
|
{
|
|
dgn-web.enable = true;
|
|
services.nginx = {
|
|
sni-proxy = {
|
|
preStreamConfig = ''
|
|
resolver 127.0.0.53;
|
|
'';
|
|
enable = true;
|
|
# Becareful, jool will not translate ips. Prefer ipv6 proxy target
|
|
redirects = {
|
|
"kfet.lab.dgnum.eu" = "v6.labcore01.pav01.infra.lab.dgnum.eu:443";
|
|
"zulip.dgnum.eu" = "v6.zulip01.pav01.infra.lab.dgnum.eu:443";
|
|
};
|
|
};
|
|
};
|
|
}
|