mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 12:46:07 +10:00
16 lines
523 B
Plaintext
16 lines
523 B
Plaintext
# 1. Rename this file to rack_attack.rb
|
|
# 2. Review the paths_to_be_protected and add any other path you need protecting
|
|
#
|
|
|
|
paths_to_be_protected = [
|
|
"#{Rails.application.config.relative_url_root}/users/password",
|
|
"#{Rails.application.config.relative_url_root}/users/sign_in",
|
|
"#{Rails.application.config.relative_url_root}/users"
|
|
]
|
|
|
|
unless Rails.env.test?
|
|
Rack::Attack.throttle('protected paths', limit: 6, period: 60.seconds) do |req|
|
|
req.ip if paths_to_be_protected.include?(req.path) && req.post?
|
|
end
|
|
end
|