13 lines
390 B
Nix
13 lines
390 B
Nix
|
{...}: {
|
||
|
services.traefik.dynamicConfigOptions.http = {
|
||
|
routers.syncthing = {
|
||
|
rule = "Host(`syncthing.xenia.me.uk`)";
|
||
|
entryPoints = ["http" "https"];
|
||
|
service = "syncthing-webinterface";
|
||
|
middlewares = ["auth"];
|
||
|
tls = {certResolver = "default";};
|
||
|
};
|
||
|
services.syncthing-webinterface.loadBalander.servers = [{url = "http://localhost:8384";}];
|
||
|
};
|
||
|
}
|