Remove unsed config from management

This commit is contained in:
Andreas Zweili 2022-11-09 21:41:15 +01:00
parent a16cdd424e
commit e13a383fa1
1 changed files with 0 additions and 15 deletions

View File

@ -1,7 +1,4 @@
{ custom, hostname }: { ... }:
let
domain = "test.2li.ch";
in
{
imports = [
(import "${custom.inputs.self}/systems/raspi4" {
@ -18,16 +15,4 @@ in
})
"${custom.inputs.self}/modules/tmux"
];
services.nginx.virtualHosts."${domain}".locations = {
"/".extraConfig = ''
try_files $uri $uri/ = 404;
'';
"/tt-rss/cache".extraConfig = ''
aio threads;
internal;
'';
"/tt-rss/backups".extraConfig = ''
internal;
'';
};
}