website: temporary password

This commit is contained in:
Mitchell Hashimoto 2015-09-27 13:30:08 -07:00
parent 2c42d1403d
commit f68c27dfb2
1 changed files with 5 additions and 0 deletions

View File

@ -5,6 +5,11 @@ require "rack/contrib/static_cache"
require "rack/contrib/try_static"
require "rack/protection"
# TEMPORARY!
use Rack::Auth::Basic, "Protected Area" do |username, password|
username == 'hashiconf' && password == 'ottomation'
end
# Protect against various bad things
use Rack::Protection::JsonCsrf
use Rack::Protection::RemoteReferrer