Преглед изворни кода

Add rate limit for media proxy requests (#10490)

30 per 30 minutes, like media uploads
master
Eugen Rochko пре 5 година
committed by GitHub
родитељ
комит
0e8819f0e8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 4 додато и 0 уклоњено
  1. +4
    -0
      config/initializers/rack_attack.rb

+ 4
- 0
config/initializers/rack_attack.rb Прегледај датотеку

@@ -57,6 +57,10 @@ class Rack::Attack
req.authenticated_user_id if req.post? && req.path.start_with?('/api/v1/media')
end

throttle('throttle_media_proxy', limit: 30, period: 30.minutes) do |req|
req.ip if req.path.start_with?('/media_proxy')
end

throttle('throttle_api_sign_up', limit: 5, period: 30.minutes) do |req|
req.ip if req.post? && req.path == '/api/v1/accounts'
end


Loading…
Откажи
Сачувај