Skip to content

Instantly share code, notes, and snippets.

@npj
Created March 15, 2012 13:15
Show Gist options
  • Select an option

  • Save npj/2044141 to your computer and use it in GitHub Desktop.

Select an option

Save npj/2044141 to your computer and use it in GitHub Desktop.
Rack IP Filter + HTTP Basic Auth
MyApp::Application.config.middleware.use FilterAuth, "/" => [ "127.0.0.1" ] do |username, password|
username == CORRECT_USERNAME && password == CORRECT_PASSWORD
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment