Update reverse proxy for our printer and webserver

This commit is contained in:
♥ Minnie ♥ 2024-06-03 21:19:58 +08:00
parent 3bf73b3dec
commit 885fdd0d0a
Signed by: jasmine
GPG key ID: 8563E358D4E8040E
2 changed files with 32 additions and 1 deletions

View file

@ -2,6 +2,17 @@
{
services.traefik.dynamicConfigOptions.http.routers = {
httpd = {
rule = "Host(`sajenim.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"geoblock"
];
service = "httpd";
};
forgejo = {
rule = "Host(`git.sajenim.dev`)";
entryPoints = [
@ -113,7 +124,7 @@
};
qbittorrent = {
rule = "Host(`qbittorrent.kanto.dev`)";
rule = "Host(`torrent.kanto.dev`)";
entryPoints = [
"websecure"
];
@ -144,6 +155,17 @@
];
service = "microbin";
};
ender1 = {
rule = "Host(`e1.kanto.dev`)";
entryPoints = [
"websecure"
];
middlewares = [
"admin"
];
service = "ender1";
};
};
}