mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-23 13:26:22 -04:00
15 lines
391 B
Text
15 lines
391 B
Text
|
# Internally Dicourse uses Errbit for error logging,
|
||
|
# you can to by setting up an instance and amending this file
|
||
|
|
||
|
Airbrake.configure do |config|
|
||
|
config.api_key = 'YOUR API KEY'
|
||
|
config.host = 'errors.example.com'
|
||
|
config.port = 80
|
||
|
config.secure = config.port == 443
|
||
|
|
||
|
|
||
|
# IP Spoof errors can be ignored
|
||
|
config.ignore << "ActionDispatch::RemoteIp::IpSpoofAttackError"
|
||
|
end
|
||
|
|