mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
FEATURE: airbrake dependency removed, can be added via a plugin if needed
This commit is contained in:
parent
0f39025f78
commit
5e0623d1e5
2 changed files with 0 additions and 15 deletions
1
Gemfile
1
Gemfile
|
@ -105,7 +105,6 @@ gem 'message_bus'
|
|||
gem 'rails_multisite', path: 'vendor/gems/rails_multisite'
|
||||
|
||||
gem 'redcarpet', require: false
|
||||
gem 'airbrake', '3.1.2', require: false # errbit is broken with 3.1.3 for now
|
||||
gem 'eventmachine'
|
||||
gem 'fast_xs'
|
||||
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
# Internally Dicourse uses Errbit for error logging,
|
||||
# you can to by setting up an instance and amending this file
|
||||
require 'airbrake'
|
||||
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
|
||||
|
Loading…
Reference in a new issue