diff options
author | Franck Cuny <franck@fcuny.net> | 2022-03-09 18:57:23 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-03-09 18:57:23 -0800 |
commit | 935866d2e84d9beda6d93b0b979ad5d12518c5d4 (patch) | |
tree | 80e9a68d56515f9c442d46d5b9c09145522bea09 /hosts | |
parent | traefik: make the rules as specific as possible (diff) | |
download | world-935866d2e84d9beda6d93b0b979ad5d12518c5d4.tar.gz |
traefik: typo
Diffstat (limited to 'hosts')
-rw-r--r-- | hosts/common/server/traefik.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hosts/common/server/traefik.nix b/hosts/common/server/traefik.nix index 0a3d089..635560d 100644 --- a/hosts/common/server/traefik.nix +++ b/hosts/common/server/traefik.nix @@ -8,7 +8,7 @@ let mkServiceConfig = name: url: domain: certResolver: { http.routers."${name}.${domain}" = { rule = "Host(`${name}.${domain}`)"; - service = "${name}"; + service = "${name}.${domain}"; tls.certResolver = certResolver; }; http.services."${name}.${domain}" = { |