Operating Systems

How to install ZSH on Ubuntu

This article explains how to install ZSH if you have an Ubuntu or Linux Mint system: sudo apt install zsh References: https://www.computersnyou.com/3145/setup-zsh-oh-zsh-linux-mint-quick-guide/ https://www.howtoforge.com/tutorial/how-to-setup-zsh-and-oh-my-zsh-on-linux/

Read More

How to password protect NGINX directories

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 /

Read More
Scroll to Top