Compare commits

..

No commits in common. "06de10cbc7852e9adf105a0c4057e07f6be82945" and "e46d1dfef717ae57f9b89bdeda3e70023e32c092" have entirely different histories.

2 changed files with 0 additions and 32 deletions

File diff suppressed because one or more lines are too long

View file

@ -1,31 +0,0 @@
{
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";
};
};
};
}