mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-06 06:56:22 +00:00
e24bfbde1a
in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding admin status to users
6 lines
101 B
Ruby
6 lines
101 B
Ruby
class Rack::Attack
|
|
throttle('req/ip', limit: 300, period: 5.minutes) do |req|
|
|
req.ip
|
|
end
|
|
end
|