Skip to content

Instantly share code, notes, and snippets.

@joshuap
Last active December 8, 2016 02:49
Show Gist options
  • Save joshuap/b605bf533db936dd24615367c6be782c to your computer and use it in GitHub Desktop.
Save joshuap/b605bf533db936dd24615367c6be782c to your computer and use it in GitHub Desktop.
NGINX basic authentication w/ Honeybadger support
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