diff --git a/bert/configuration.nix b/bert/configuration.nix index 3814822..f4e97b4 100644 --- a/bert/configuration.nix +++ b/bert/configuration.nix @@ -6,6 +6,7 @@ ./hardware-configuration.nix ./services/factorio.nix ./services/http/index.nix + ./services/immich.nix ./services/minecraft.nix ./services/monitoring.nix ./services/forgejo.nix diff --git a/bert/services/http/index.nix b/bert/services/http/index.nix index 577cdf0..22f8782 100644 --- a/bert/services/http/index.nix +++ b/bert/services/http/index.nix @@ -13,6 +13,7 @@ ./maps.chandlerswift.com.nix ./music.chandlerswift.com.nix ./nau-sidewalks.chandlerswift.com.nix + ./photos.chandlerswift.com.nix ./preview.chandlerswift.com.nix ./sharontrahan.com.nix ./social.chandlerswift.com.nix diff --git a/bert/services/http/photos.chandlerswift.com.nix b/bert/services/http/photos.chandlerswift.com.nix new file mode 100644 index 0000000..beb78df --- /dev/null +++ b/bert/services/http/photos.chandlerswift.com.nix @@ -0,0 +1,5 @@ +{config, ...}: { + services.caddy.virtualHosts."photos.chandlerswift.com".extraConfig = '' + reverse_proxy localhost:${toString config.services.immich.port} + ''; +}