fix traefik credential path

This commit is contained in:
Yan Lin 2025-11-26 13:50:59 +01:00
parent 28322fab78
commit 4a0f986c62
2 changed files with 4 additions and 23 deletions

View file

@ -16,32 +16,13 @@
};
};
files = {
rule = "Host(`files.${config.networking.hostName}.yanlincs.com`)";
service = "files";
tls = {
certResolver = "cloudflare";
domains = [{
main = "*.${config.networking.hostName}.yanlincs.com";
}];
};
};
};
services = {
syncthing = {
loadBalancer = {
servers = [{
url = "http://localhost:8384";
}];
};
};
files = {
loadBalancer = {
servers = [{
url = "http://localhost:5099";
url = "http://127.0.0.1:8384";
}];
};
};