sakura: disable conduit for now
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
All checks were successful
ci/woodpecker/push/checks Pipeline was successful
This commit is contained in:
parent
c0475718f5
commit
3c22e17818
2 changed files with 7 additions and 16 deletions
|
@ -11,6 +11,5 @@
|
||||||
./hedgedoc.nix
|
./hedgedoc.nix
|
||||||
./dashdot.nix
|
./dashdot.nix
|
||||||
./grafana.nix
|
./grafana.nix
|
||||||
./conduit.nix
|
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,17 +12,17 @@
|
||||||
services.traefik = {
|
services.traefik = {
|
||||||
enable = true;
|
enable = true;
|
||||||
dynamicConfigOptions = {
|
dynamicConfigOptions = {
|
||||||
http.middlewares.authelia = {
|
|
||||||
forwardauth = {
|
|
||||||
address = "http://localhost:9091/api/verify?rd=https://passport.notohh.dev/";
|
|
||||||
trustForwardHeader = true;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
http = {
|
http = {
|
||||||
|
middlewares.authelia = {
|
||||||
|
forwardauth = {
|
||||||
|
address = "http://localhost:9091/api/verify?rd=https://passport.notohh.dev/";
|
||||||
|
trustForwardHeader = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
routers = {
|
routers = {
|
||||||
api = {
|
api = {
|
||||||
rule = "PathPrefix(`/api/`)";
|
rule = "PathPrefix(`/api/`)";
|
||||||
entryPoints = ["websecure"];
|
entrypoints = ["websecure"];
|
||||||
service = "api@internal";
|
service = "api@internal";
|
||||||
};
|
};
|
||||||
jellyfin = {
|
jellyfin = {
|
||||||
|
@ -104,13 +104,6 @@
|
||||||
tls.domains = [{main = "*.notohh.dev";}];
|
tls.domains = [{main = "*.notohh.dev";}];
|
||||||
tls.certresolver = "production";
|
tls.certresolver = "production";
|
||||||
};
|
};
|
||||||
conduit = {
|
|
||||||
rule = "Host(`artoria.notohh.dev`)";
|
|
||||||
entrypoints = ["websecure"];
|
|
||||||
service = "conduit";
|
|
||||||
tls.domains = [{main = "*.notohh.dev";}];
|
|
||||||
tls.certresolver = "production";
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
services = {
|
services = {
|
||||||
authelia.loadBalancer.servers = [{url = "http://localhost:9091";}];
|
authelia.loadBalancer.servers = [{url = "http://localhost:9091";}];
|
||||||
|
@ -125,7 +118,6 @@
|
||||||
woodpecker-server.loadBalancer.servers = [{url = "http://localhost:8200";}];
|
woodpecker-server.loadBalancer.servers = [{url = "http://localhost:8200";}];
|
||||||
atticd.loadBalancer.servers = [{url = "http://localhost:8100";}];
|
atticd.loadBalancer.servers = [{url = "http://localhost:8100";}];
|
||||||
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
hedgedoc.loadBalancer.servers = [{url = "http://localhost:3300";}];
|
||||||
conduit.loadBalancer.servers = [{url = "http://localhost:6167";}];
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue