Updated media config to fix networking issues with jellyseer

This commit is contained in:
Random936
2025-11-29 22:13:07 -05:00
parent 8ab23d4292
commit 4d5673f96b

View File

@@ -66,6 +66,13 @@
}; };
}; };
services.cron = {
enable = true;
systemCronJobs = [
"*/10 * * * * nextcloud nextcloud-occ preview:pre-generate"
];
};
# Gitea # Gitea
services.gitea = { services.gitea = {
enable = true; enable = true;
@@ -127,7 +134,10 @@
''; '';
locations."/".extraConfig = '' locations."/".extraConfig = ''
allow 192.168.100.0/24; allow 192.168.0.0/16;
allow 10.0.0.0/8;
allow 172.16.0.0/12;
allow 127.0.0.1;
deny all; deny all;
proxy_buffering off; proxy_buffering off;