Compare commits

...

2 commits

Author SHA1 Message Date
9c5ca2efe5
bert: Upgrade Immich to 2.0(.1) -- stable! 2025-10-05 20:46:27 -05:00
85e5dfd84b
bert: Add svsindustries.org fileserver
Co-Authored-By: Eric Villnow <eric@vill.now>
2025-09-24 20:27:34 -05:00
3 changed files with 22 additions and 0 deletions

View file

@ -22,6 +22,7 @@
./social.chandlerswift.com.nix
./stjohnscccc.com.nix
./stjohnscccc.org.nix
./svsindustries.org.nix
./swiftgang.net.nix
./troop352.us.nix
./whereis.chandlerswift.com.nix

View file

@ -1,5 +1,6 @@
{config, ...}: {
services.immich.enable = true;
services.immich.package = (import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/328115af930e90649f97a3675a6b88d87c7e6920.tar.gz") {}).immich;
services.immich.mediaLocation = "/srv/immich";
services.caddy.virtualHosts."photos.chandlerswift.com".extraConfig = ''

View file

@ -0,0 +1,20 @@
{
services.caddy.virtualHosts."svsindustries.org" = {
# serverAliases = ["*.svsindustries.org"];
extraConfig = ''
encode zstd gzip
file_server
root * /srv/www/svsindustries.org
handle_errors {
respond "{err.status_code} {err.status_text}"
}
'';
};
systemd.tmpfiles.settings."10-svsindustries-org" = {
"/srv/www/svsindustries.org" = {
d = {};
};
};
}