Last active
December 8, 2016 02:49
-
-
Save joshuap/b605bf533db936dd24615367c6be782c to your computer and use it in GitHub Desktop.
NGINX basic authentication w/ Honeybadger support
This file contains 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
http { | |
# Increase the size of allowed values in map directive. | |
map_hash_bucket_size 128; | |
# Set the $auth_basic variable based on the value of the Honeybadger-Token header. | |
map $http_honeybadger_token $auth_basic { | |
default "Restricted Content"; | |
"5245586210a715a83dfa8c6395226a19f7e46a6b647cc349b0479e92a4c43e42" "off"; | |
} | |
server { | |
# ... | |
location / { | |
auth_basic $auth_basic; | |
auth_basic_user_file .htpasswd; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment