diff --git a/config/initializers/rack-attack.rb b/config/initializers/rack-attack.rb index 15fc6b35..fb447685 100644 --- a/config/initializers/rack-attack.rb +++ b/config/initializers/rack-attack.rb @@ -1,5 +1,9 @@ class Rack::Attack - throttle('req/ip', limit: 300, period: 5.minutes) do |req| - req.ip + throttle('get-req/ip', limit: 300, period: 5.minutes) do |req| + req.ip if req.get? + end + + throttle('post-req/ip', limit: 100, period: 5.minutes) do |req| + req.ip if req.post? end end