add x-frame headers
This commit is contained in:
parent
9723c4abc9
commit
9678a1d4b2
2 changed files with 6 additions and 0 deletions
4
Gemfile
4
Gemfile
|
|
@ -12,6 +12,10 @@ gem 'rails_autolink', '1.0.9'
|
|||
|
||||
gem 'rack-cors', '0.2.7', :require => 'rack/cors'
|
||||
|
||||
# click-jacking protection
|
||||
|
||||
gem 'rack-protection', '1.2'
|
||||
|
||||
# authentication
|
||||
|
||||
gem 'devise', '2.1.2'
|
||||
|
|
|
|||
|
|
@ -14,4 +14,6 @@ if defined?(Unicorn)
|
|||
end
|
||||
use Rack::Deflater
|
||||
use Rack::ChromeFrame, :minimum => 8
|
||||
use Rack::Protection::FrameOptions
|
||||
|
||||
run Diaspora::Application
|
||||
|
|
|
|||
Loading…
Reference in a new issue