mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
15 lines
373 B
Ruby
15 lines
373 B
Ruby
require 'rack'
|
|
require 'rack/lobster'
|
|
|
|
lobster = Rack::Lobster.new
|
|
|
|
protected_lobster = Rack::Auth::Basic.new(lobster) do |username, password|
|
|
'secret' == password
|
|
end
|
|
|
|
protected_lobster.realm = 'Lobster 2.0'
|
|
|
|
pretty_protected_lobster = Rack::ShowStatus.new(Rack::ShowExceptions.new(protected_lobster))
|
|
|
|
Rack::Server.start :app => pretty_protected_lobster, :Port => 9292
|
|
|