How to password protect an NGINX website
Here are the steps to password protect an NGINX website: 1. Logon to the server You need SSH to solve this problem. 2. Create a
Here are the steps to password protect an NGINX website: 1. Logon to the server You need SSH to solve this problem. 2. Create a
Description Ensuring you have a proper NGINX configuration is important in determining web servers errors. Both Apache and NGINX are designed to bypass minor errors
Background Enabling compression on your web site will serve your website a lot faster. To check if you have compression enabled, use the tool in
Background Although NGINX doesn’t have the concept of .htaccess, getting Drupal 8 working on a Virtualmin NGINX certainly is possible. You have to take the
Background Keeping track of file downloads is quite tricky. On the one hand, you have tools such as Google Analytics that gives you everything and
How to redirect pages to another location using NGINX There are a few different ways to redirect pages from one location to another with NGINX.
Background Setting up and using NGINX with Virtualmin is well supported and dead easy. Instructions are already provided here but in this article we will
On an NGINX hosted website when accessing /wp-admin on your WordPress hosted website, you might encounter the following error: 502 Bad Gateway 500 errors often
There are no hard and fast rules on how to deal with a server that’s under attack, but this article should give you some tips
TL;DR mc -e /etc/nginx/nginx.conf location / { auth_basic “Restricted”; auth_basic_user_file /home/domain//public_html/.htpasswd; } htpasswd -c /home/domain/public_html/.htpasswd username Now restart NGINX: # service nginx restart The /