Compare commits
2 commits
53947efb99
...
9c5ca2efe5
| Author | SHA1 | Date | |
|---|---|---|---|
| 9c5ca2efe5 | |||
| 85e5dfd84b |
3 changed files with 22 additions and 0 deletions
|
|
@ -22,6 +22,7 @@
|
||||||
./social.chandlerswift.com.nix
|
./social.chandlerswift.com.nix
|
||||||
./stjohnscccc.com.nix
|
./stjohnscccc.com.nix
|
||||||
./stjohnscccc.org.nix
|
./stjohnscccc.org.nix
|
||||||
|
./svsindustries.org.nix
|
||||||
./swiftgang.net.nix
|
./swiftgang.net.nix
|
||||||
./troop352.us.nix
|
./troop352.us.nix
|
||||||
./whereis.chandlerswift.com.nix
|
./whereis.chandlerswift.com.nix
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,6 @@
|
||||||
{config, ...}: {
|
{config, ...}: {
|
||||||
services.immich.enable = true;
|
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.immich.mediaLocation = "/srv/immich";
|
||||||
|
|
||||||
services.caddy.virtualHosts."photos.chandlerswift.com".extraConfig = ''
|
services.caddy.virtualHosts."photos.chandlerswift.com".extraConfig = ''
|
||||||
|
|
|
||||||
20
bert/services/http/svsindustries.org.nix
Normal file
20
bert/services/http/svsindustries.org.nix
Normal 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 = {};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue