fix(miniflux): fix port stringification
This commit is contained in:
parent
d554755013
commit
e91a7e9621
|
@ -5,14 +5,14 @@ in {
|
|||
services.miniflux = {
|
||||
enable = true;
|
||||
adminCredentialsFile = "/etc/nixos/secrets/miniflux";
|
||||
config = { LISTEN_ADDR = "localhost:${port}"; };
|
||||
config = { LISTEN_ADDR = "localhost:${toString port}"; };
|
||||
};
|
||||
|
||||
services.nginx = {
|
||||
virtualHosts."news.felschr.com" = {
|
||||
enableACME = true;
|
||||
forceSSL = true;
|
||||
locations."/".proxyPass = "http://localhost:${port}";
|
||||
locations."/".proxyPass = "http://localhost:${toString port}";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue