2013-11-06 07:10:59 -05:00
|
|
|
# 1. Rename this file to rack_attack.rb
|
|
|
|
# 2. Review the paths_to_be_protected and add any other path you need protecting
|
2013-09-26 16:40:55 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
paths_to_be_protected = [
|
|
|
|
"#{Rails.application.config.relative_url_root}/users/password",
|
|
|
|
"#{Rails.application.config.relative_url_root}/users/sign_in",
|
2013-11-25 11:24:45 -05:00
|
|
|
"#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session.json",
|
|
|
|
"#{Rails.application.config.relative_url_root}/api/#{API::API.version}/session",
|
2013-09-26 16:40:55 -04:00
|
|
|
"#{Rails.application.config.relative_url_root}/users"
|
|
|
|
]
|
2013-11-21 10:04:23 -05:00
|
|
|
|
|
|
|
unless Rails.env.test?
|
2013-11-25 11:24:45 -05:00
|
|
|
Rack::Attack.throttle('protected paths', limit: 10, period: 60.seconds) do |req|
|
2013-11-21 10:04:23 -05:00
|
|
|
req.ip if paths_to_be_protected.include?(req.path) && req.post?
|
|
|
|
end
|
2013-09-26 16:40:55 -04:00
|
|
|
end
|