Created
March 15, 2012 13:15
-
-
Save npj/2044141 to your computer and use it in GitHub Desktop.
Rack IP Filter + HTTP Basic Auth
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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