diff options
author | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-02 11:29:37 -0500 |
---|---|---|
committer | Tyler Murphy <tylermurphy534@gmail.com> | 2023-02-02 11:29:37 -0500 |
commit | 18a27f62befb0c0d2e3b175f08f6088f10b25063 (patch) | |
tree | 1d8c0d00685f9374fdb3705062c08265d7e1fdb0 /src/public | |
parent | add caching header (diff) | |
download | xssbook-18a27f62befb0c0d2e3b175f08f6088f10b25063.tar.gz xssbook-18a27f62befb0c0d2e3b175f08f6088f10b25063.tar.bz2 xssbook-18a27f62befb0c0d2e3b175f08f6088f10b25063.zip |
loading by offset on profile
Diffstat (limited to 'src/public')
-rw-r--r-- | src/public/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/public/mod.rs b/src/public/mod.rs index eb846fb..7e5b382 100644 --- a/src/public/mod.rs +++ b/src/public/mod.rs @@ -24,7 +24,7 @@ pub mod pages; pub fn router() -> Router { let governor_conf = Box::new( GovernorConfigBuilder::default() - .burst_size(20) + .burst_size(20000) .per_second(1) .key_extractor(SmartIpKeyExtractor) .finish() |