mastus: tt-rss: update to changes in nixpkgs

This commit is contained in:
Gabriel Ebner 2016-07-30 07:14:53 +02:00
parent cb029f8442
commit 6b38997f8e

@ -18,6 +18,8 @@
enable = true; enable = true;
user = "ttrss"; user = "ttrss";
pool = "ttrss";
database = { database = {
type = "pgsql"; type = "pgsql";
host = "localhost"; host = "localhost";
@ -35,10 +37,9 @@
log_level = notice log_level = notice
''; '';
pools = { poolConfigs = {
ttrss = { ttrss = ''
listen = "9000"; listen = 9000
extraConfig = ''
user = ttrss user = ttrss
pm = dynamic pm = dynamic
pm.max_children = 75 pm.max_children = 75
@ -50,7 +51,6 @@
''; '';
}; };
}; };
};
networking.firewall.allowedTCPPorts = [ 9000 ]; networking.firewall.allowedTCPPorts = [ 9000 ];
}; };