removed fs limit

This commit is contained in:
Bryan Ramos 2026-03-20 18:11:58 -04:00
parent 3a57d7a9f5
commit 8043c0fee2
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,8 @@
{
"permissions": {
"allow": [
"WebSearch",
"WebFetch(domain:forgejo.org)"
]
}
}

View file

@ -62,6 +62,11 @@ in
SSH_PORT = 22;
START_SSH_SERVER = false;
LANDING_PAGE = "explore";
LFS_MAX_FILE_SIZE = 0;
};
"repository.upload" = {
FILE_MAX_SIZE = 0;
};
service = {
@ -92,6 +97,7 @@ in
services.nginx.virtualHosts."git.${domain}" = mkIf nginx.enable {
useACMEHost = domain;
forceSSL = true;
extraConfig = "client_max_body_size 0;";
locations."/" = {
proxyPass = "http://unix:${socketPath}";
};