Archive for the ‘nginx’ Category
Password Protect Directory with NGinx
& Ubuntu 16.04 sudo apt-get install apache2-utils htpasswd -c /home/username/.htpasswd username Login: username Password: your_cool_password those lines are added to “/etc/nginx/sites-available/cool_site_config config location /restricted_area { auth_basic “Administrator Login”; auth_basic_user_file /home/username/.htpasswd; }
In: English, Linux, nginx, Ubuntu
RapidSSL cert installation on nginx server
I recently installed RapidSSL cert and got “not trusted” message on Android (desktop browsers were both ok) Now… this is how to install RadidSSL cert properly. Step 1: got and check your installation here https://cryptoreport.rapidssl.com/checker/views/certCheck.jsp – if you’ve got nothing working yet – just download RapidSSL SHA256 CA cert from here: https://cryptoreport.rapidssl.com/chainTester/webservice/validatecerts/certificate?certKey=issuer.intermediate.cert.84&fileName=RapidSSL%20SHA256%20CA&fileExtension=txt Or choose the […]