add firefly

This commit is contained in:
Fabian Montero 2024-11-17 00:24:20 -06:00
parent 75fe6138c0
commit 06de10cbc7
Signed by untrusted user: fabian
GPG key ID: 1FFAC35E1798174F

31
sys/srv/firefly.nix Normal file
View file

@ -0,0 +1,31 @@
{
lib,
pkgs,
...
}:
with lib; {
services = {
nginx = {
virtualHosts."firefly.posixlycorrect.com" = {
enableACME = true;
forceSSL = true;
extraConfig = ''
proxy_headers_hash_max_size 512;
proxy_headers_hash_bucket_size 128;
'';
};
};
firefly-iii = {
enable = true;
user = "firefly-iii";
dataDir = "/var/lib/firefly-iii";
enableNginx = true;
virtualHost = "firefly.posixlycorrect.com";
settings = {
DB_CONNECTION = "sqlite";
APP_ENV = "local";
};
};
};
}