un container
This commit is contained in:
@@ -66,7 +66,7 @@ let
|
||||
hassUrl = "http://10.0.1.4:8123";
|
||||
immichUrl = "http://${serverIp}:${toString config.services.immich.port}";
|
||||
jellyfinUrl = "http://${serverIp}:8096";
|
||||
jellyseerrUrl = "http://${config.containers.jellyseerr.localAddress}:${toString config.containers.jellyseerr.config.services.jellyseerr.port}";
|
||||
jellyseerrUrl = "http://10.0.1.3:${toString config.services.jellyseerr.port}";
|
||||
lubeloggerUrl = "http://${serverIp}:6754";
|
||||
onlyofficeUrl = "http://${config.containers.nextcloud.localAddress}:${toString config.containers.nextcloud.config.services.onlyoffice.port}";
|
||||
openWebUIUrl = "http://${serverIp}:8888";
|
||||
@@ -243,6 +243,22 @@ in
|
||||
};
|
||||
|
||||
dynamicConfigOptions = {
|
||||
# udp = {
|
||||
# services = {
|
||||
# wireguard.loadBalancer.servers = [
|
||||
# {
|
||||
# url = "localhost:51820";
|
||||
# }
|
||||
# ];
|
||||
# };
|
||||
# routers = {
|
||||
# wireguard = {
|
||||
# entryPoints = [ "websecure" ];
|
||||
# service = "wireguard";
|
||||
# };
|
||||
# };
|
||||
# };
|
||||
|
||||
http = {
|
||||
middlewares = {
|
||||
authentik = {
|
||||
@@ -330,6 +346,12 @@ in
|
||||
}
|
||||
];
|
||||
|
||||
actual.loadBalancer.servers = [
|
||||
{
|
||||
url = "http://10.0.1.3:3333";
|
||||
}
|
||||
];
|
||||
|
||||
authentik.loadBalancer.servers = [
|
||||
{
|
||||
url = authentikUrl;
|
||||
@@ -413,6 +435,17 @@ in
|
||||
tls.certResolver = "letsencrypt";
|
||||
};
|
||||
|
||||
actual = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Host(`actual.${domain}`)";
|
||||
service = "actual";
|
||||
middlewares = [
|
||||
"crowdsec"
|
||||
"whitelist-geoblock"
|
||||
];
|
||||
tls.certResolver = "letsencrypt";
|
||||
};
|
||||
|
||||
authentik = {
|
||||
entryPoints = [ "websecure" ];
|
||||
rule = "Host(`authentik.${domain}`)";
|
||||
|
||||
Reference in New Issue
Block a user