mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
removed fs limit
This commit is contained in:
parent
3a57d7a9f5
commit
8043c0fee2
2 changed files with 14 additions and 0 deletions
8
.claude/settings.local.json
Normal file
8
.claude/settings.local.json
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
{
|
||||||
|
"permissions": {
|
||||||
|
"allow": [
|
||||||
|
"WebSearch",
|
||||||
|
"WebFetch(domain:forgejo.org)"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -62,6 +62,11 @@ in
|
||||||
SSH_PORT = 22;
|
SSH_PORT = 22;
|
||||||
START_SSH_SERVER = false;
|
START_SSH_SERVER = false;
|
||||||
LANDING_PAGE = "explore";
|
LANDING_PAGE = "explore";
|
||||||
|
LFS_MAX_FILE_SIZE = 0;
|
||||||
|
};
|
||||||
|
|
||||||
|
"repository.upload" = {
|
||||||
|
FILE_MAX_SIZE = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
service = {
|
service = {
|
||||||
|
|
@ -92,6 +97,7 @@ in
|
||||||
services.nginx.virtualHosts."git.${domain}" = mkIf nginx.enable {
|
services.nginx.virtualHosts."git.${domain}" = mkIf nginx.enable {
|
||||||
useACMEHost = domain;
|
useACMEHost = domain;
|
||||||
forceSSL = true;
|
forceSSL = true;
|
||||||
|
extraConfig = "client_max_body_size 0;";
|
||||||
locations."/" = {
|
locations."/" = {
|
||||||
proxyPass = "http://unix:${socketPath}";
|
proxyPass = "http://unix:${socketPath}";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue