diff options
author | 2022-11-06 10:47:48 +0100 | |
---|---|---|
committer | 2022-11-06 09:47:48 +0000 | |
commit | 4d66fb9603ada9b04f642576bbc541189876a3f3 (patch) | |
tree | 7f9b4f3a5ab95b20eb1ad4ceaf2e6779c1e02630 /testrig/config.go | |
parent | [bugfix] Check `media-description-min-chars` on submission of new status (#960) (diff) | |
download | gotosocial-4d66fb9603ada9b04f642576bbc541189876a3f3.tar.xz |
[feature] Make rate limit requests amount configurable (#966)
* update rate limit documentation
* regenerate landingpage config helpers
* make rate limit rate configurable
Diffstat (limited to 'testrig/config.go')
-rw-r--r-- | testrig/config.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/testrig/config.go b/testrig/config.go index 82f333756..5914d9c93 100644 --- a/testrig/config.go +++ b/testrig/config.go @@ -105,7 +105,8 @@ var testDefaults = config.Configuration{ SyslogProtocol: "udp", SyslogAddress: "localhost:514", - AdvancedCookiesSamesite: "lax", + AdvancedCookiesSamesite: "lax", + AdvancedRateLimitRequests: 0, // disabled SoftwareVersion: "0.0.0-testrig", } |