diff options
| author | Mel <mel@rnrd.eu> | 2025-02-12 18:50:02 +0100 |
|---|---|---|
| committer | Mel <mel@rnrd.eu> | 2025-02-12 18:54:57 +0100 |
| commit | 207162c139dffa2696bc7e949b85da47ce28d17b (patch) | |
| tree | b72f15fa49ccbe43dfb0cf19809d46adb42555d5 | |
| parent | 2d90edb0be0ec6063a646b4473d1663179dd55fc (diff) | |
| download | network-207162c139dffa2696bc7e949b85da47ce28d17b.tar.zst network-207162c139dffa2696bc7e949b85da47ce28d17b.zip | |
Switch services and hosts to wildcard renard certificate
Signed-off-by: Mel <mel@rnrd.eu>
| -rw-r--r-- | modules/jellyfin.nix | 2 | ||||
| -rw-r--r-- | services/akkoma/default.nix | 2 | ||||
| -rw-r--r-- | services/conduwuit.nix | 2 | ||||
| -rw-r--r-- | services/immich.nix | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/modules/jellyfin.nix b/modules/jellyfin.nix index 6494fc6..48c8f47 100644 --- a/modules/jellyfin.nix +++ b/modules/jellyfin.nix @@ -9,7 +9,7 @@ services.nginx.virtualHosts = { "jelly.rnrd.eu" = { - enableACME = true; + useACMEHost = "rnrd.eu"; forceSSL = true; locations."/" = { proxyPass = "http://127.0.0.1:8096"; diff --git a/services/akkoma/default.nix b/services/akkoma/default.nix index 101d805..3c0016e 100644 --- a/services/akkoma/default.nix +++ b/services/akkoma/default.nix @@ -110,8 +110,8 @@ in }; services.nginx.virtualHosts."soc.rnrd.eu" = { + useACMEHost = "rnrd.eu"; forceSSL = true; - enableACME = true; locations."/" = { proxyWebsockets = true; diff --git a/services/conduwuit.nix b/services/conduwuit.nix index 5935219..03b0dcb 100644 --- a/services/conduwuit.nix +++ b/services/conduwuit.nix @@ -48,8 +48,8 @@ in proxySettings = { proxyPass = "http://127.0.0.1:${toString conduwuitLocalPort}"; }; in { + useACMEHost = "rnrd.eu"; forceSSL = true; - enableACME = true; locations."/" = proxySettings; locations."/_matrix" = proxySettings; diff --git a/services/immich.nix b/services/immich.nix index b1a6a6f..1f6fe22 100644 --- a/services/immich.nix +++ b/services/immich.nix @@ -95,7 +95,7 @@ in services.nginx.virtualHosts = { "img.rnrd.eu" = { - enableACME = true; + useACMEHost = "rnrd.eu"; forceSSL = true; locations."/" = { proxyPass = "http://${me.tailscale.ip}:${toString immichLocalPort}"; |
