43 lines
778 B
Nix
43 lines
778 B
Nix
{ config, ... }:
|
|
|
|
let
|
|
fqdn = "feeds.kempkens.io";
|
|
in
|
|
{
|
|
services.miniflux = {
|
|
enable = true;
|
|
|
|
config = {
|
|
LISTEN_ADDR = "127.0.0.1:8016";
|
|
BASE_URL = "https://${fqdn}/";
|
|
POLLING_FREQUENCY = "25";
|
|
|
|
INVIDIOUS_INSTANCE = "yt.daniel.sx";
|
|
};
|
|
|
|
adminCredentialsFile = config.age.secrets.miniflux-credentials.path;
|
|
};
|
|
|
|
services.postgresql = {
|
|
identMap = ''
|
|
miniflux miniflux miniflux
|
|
'';
|
|
|
|
authentication = ''
|
|
local miniflux miniflux peer map=miniflux
|
|
'';
|
|
};
|
|
|
|
services.nginx.virtualHosts."${fqdn}" = {
|
|
quic = true;
|
|
http3 = true;
|
|
|
|
onlySSL = true;
|
|
useACMEHost = "kempkens.io";
|
|
|
|
locations."/" = {
|
|
recommendedProxySettings = true;
|
|
proxyPass = "http://127.0.0.1:8016";
|
|
};
|
|
};
|
|
}
|