Basic HTTP Authentication With Nginx
Basic HTTP Authentication With NginxVersion 1.0 This tutorial shows how you can use basic HTTP authentication with Nginx to password-protect directories on your server or even a whole website. This is the Nginx equivalent to basic HTTP authentication on Apache with .htaccess/.htpasswd. I do not issue any guarantee that this will work for you!
1 Preliminary NoteI'm using the website www.example.com here with the document root /var/www/www.example.com/web/ and the Nginx vhost configuration file /etc/nginx/sites-enabled/www.example.com.vhost. The directory I want to password-protect is /var/www/www.example.com/web/test/.
2 Creating The Password FileWe need a password file where users that should be able to log in are listed with their passwords (in encrypted form). To create such a password file, we can either use Apache's htpasswd tool, or we use the Python script from http://trac.edgewall.org/browser/trunk/contrib/htpasswd.py.
2.1 Using Apache's htpasswd CommandIf you want to use Apache's htpasswd command, check if it exists on your system: which htpasswd root@server1:~# which htpasswd If you get an output like the one above, everything is fine - htpasswd is already installed. If the command returns without any output, htpasswd does not exist on your system, and you must install it. On Debian/Ubuntu, it's part of the apache2-utils package which we can install as follows: apt-get install apache2-utils I want to create the password file /var/www/www.example.com/.htpasswd now and store the user falko in it (you can give the password file any name you like - it's not necessary to name it .htpasswd; I just named it .htpasswd because that's the way password files are named under Apache): htpasswd -c /var/www/www.example.com/.htpasswd falko You will be asked for a password for the user falko. Please note that the -c switch makes that the file is created from scratch; if it didn't exist before, it will be created; if it existed before, it will be overwritten with a new one, and all users from the old file will be lost! Therefore, if you want to add another user without deleting all existing users, use the htpasswd command without the -c switch: htpasswd /var/www/www.example.com/.htpasswd till The last command adds the user till to /var/www/www.example.com/.htpasswd so that we now have the users falko and till in it.
2.2 Using The htpasswd.py Python ScriptIf you don't want to or cannot use Apache's htpasswd command, you can use the Python script from http://trac.edgewall.org/browser/trunk/contrib/htpasswd.py. We download it to /usr/local/bin and make it executable as follows: cd /usr/local/bin I want to create the password file /var/www/www.example.com/.htpasswd now and store the user falko in it (you can give the password file any name you like - it's not necessary to name it .htpasswd; I just named it .htpasswd because that's the way password files are named under Apache): htpasswd.py -c -b /var/www/www.example.com/.htpasswd falko falkossecret Please replace falkossecret with a password for the user falko. Please note that the -c switch makes that the file is created from scratch; if it didn't exist before, it will be created; if it existed before, it will be overwritten with a new one, and all users from the old file will be lost! Therefore, if you want to add another user without deleting all existing users, use the htpasswd.py command without the -c switch: htpasswd.py -b /var/www/www.example.com/.htpasswd till tillssecret The last command adds the user till to /var/www/www.example.com/.htpasswd so that we now have the users falko and till in it.
3 Configuring NginxNow that we have our password file in place, we just need to add it to our Nginx vhost configuration in /etc/nginx/sites-enabled/www.example.com.vhost, inside the server {} container. vi /etc/nginx/sites-enabled/www.example.com.vhost Because I want to password-protect the test directory in the document root, I use location /test {} here (to password-protect the whole website, you'd use location / {}):
Reload Nginx afterwards: /etc/init.d/nginx reload That's it! You can now go to your test directory in a browser (http://www.example.com/test), and you should be asked for a username and password: If you enter the correct username and password, you'll be granted access: Otherwise you will see a 401 Authorization Required error message:
4 Links
About The Author![]() Falko Timme is the owner of
|








Recent comments
14 hours 11 min ago
19 hours 16 min ago
23 hours 41 min ago
1 day 1 hour ago
1 day 15 hours ago
1 day 15 hours ago
1 day 20 hours ago
2 days 3 hours ago
2 days 4 hours ago
2 days 5 hours ago