Evie Litherland-Smith
a1c28e779a
Remove jupyter service and qbittorrent traefik route Add ntfy-sh (enabled) and initial grafana (not enabled) expressions Change services to call own traefik expression, rather than needing to be called explicitly
17 lines
453 B
Nix
17 lines
453 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./default.nix ];
|
|
services.traefik.dynamicConfigOptions.http = {
|
|
routers.nextcloud = {
|
|
rule = "Host(`cloud.xenia.me.uk`)";
|
|
entryPoints = [ "http" "https" ];
|
|
service = "nextcloud-webinterface";
|
|
middlewares = [ "hsts" ];
|
|
tls = { certResolver = "default"; };
|
|
};
|
|
services.nextcloud-webinterface.loadBalancer.servers =
|
|
[{ url = "http://localhost:8000"; }];
|
|
};
|
|
}
|