feat(eientei): enable photoview
This commit is contained in:
parent
4030006336
commit
591005b9c0
20
spec/eientei/photoview.nix
Normal file
20
spec/eientei/photoview.nix
Normal file
|
@ -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";
|
||||||
|
}
|
Loading…
Reference in a new issue