https authentication in nginx
In order not to forget again how to setup http authentication in nginx here is a reminder. For https, follow these steps: $ sudo -s # cd /etc/nginx # openssl req -new -x509 -nodes -out server.crt -keyout server.key and add these lines to your server instance: server { listen 443; ssl on; ssl_certificate /etc/nginx/server.crt; ssl_certificate_key [...]
Tagged authentication, https, nginx