fix(nix): configure freshrss
This commit is contained in:
parent
6089144711
commit
5e5da966f7
4 changed files with 20 additions and 0 deletions
|
@ -106,6 +106,14 @@
|
|||
'';
|
||||
locations."/".proxyPass = "http://localhost:3000";
|
||||
};
|
||||
"localhost:8040" = {
|
||||
listen = [
|
||||
{
|
||||
addr = "0.0.0.0";
|
||||
port = 8040;
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
@ -96,6 +96,16 @@
|
|||
passwordFile = config.age.secrets.paperless-password.path;
|
||||
};
|
||||
|
||||
services.freshrss = {
|
||||
enable = true;
|
||||
baseUrl = "http://localhost:8040";
|
||||
virtualHost = "localhost:8040";
|
||||
defaultUser = "admin";
|
||||
passwordFile = config.age.secrets.freshrss-password.path;
|
||||
database.type = "sqlite";
|
||||
webserver = "nginx";
|
||||
};
|
||||
|
||||
system.stateVersion = "23.11";
|
||||
home-manager.users.priime = { pkgs, ... }: { imports = [ ./home.nix ]; };
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue