fix middlewares name, remove httpd, add nextcloud

This commit is contained in:
♥ Minnie ♥ 2023-12-19 09:21:05 +08:00
parent 3aad8a11f9
commit 8e457614c9
4 changed files with 34 additions and 15 deletions

View file

@ -2,17 +2,6 @@
{
services.traefik.dynamicConfigOptions.http.routers = {
httpd = {
rule = "Host(`sajenim.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"geoblock"
];
service = "httpd";
};
microbin = {
rule = "Host(`bin.kanto.dev`)";
entryPoints = [
@ -155,6 +144,18 @@
];
service = "jellyseerr";
};
nextcloud = {
rule = "Host(`nc.kanto.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
# "internal"
"nextcloud-chain"
];
service = "nextcloud";
};
};
}