From 591005b9c083c874f9c196a5a49218d95e37a2d1 Mon Sep 17 00:00:00 2001 From: 514fpv Date: Thu, 14 Mar 2024 10:47:46 +0800 Subject: [PATCH] feat(eientei): enable photoview --- spec/eientei/photoview.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 spec/eientei/photoview.nix diff --git a/spec/eientei/photoview.nix b/spec/eientei/photoview.nix new file mode 100644 index 00000000..f7ccb595 --- /dev/null +++ b/spec/eientei/photoview.nix @@ -0,0 +1,20 @@ +{ + services.photoview = { + enable = true; + database.driver = "postgres"; + database.string = "postgresql:///photoview?host=/var/run/postgresql"; + stateDir = "/nix/persist/service/photoview"; + secrets = "/nix/persist/service/photoview/secrets.env" ; + }; + + services.nginx.virtualHosts."dvr.514fpv.io" = { + useACMEHost = ".514fpv.io"; + addSSL = true; + locations."/" = { + proxyPass = "http://127.0.0.1:8000"; + proxyWebsockets = true; + }; + }; + + global.fs.zfs.mountpoints."/nix/persist/service/photoview" = "service/photoview"; +}