Select Page
Git Cheat Sheet

Git Cheat Sheet

Check if installed git –version   Setup git config –global user.name “Presidio Production” git config –global user.email “presidio_production@gmail.com” git config –list   Initialize git on directory Browse the...
Install LetsEncrypt on Centos 6

Install LetsEncrypt on Centos 6

Let’s Encrypt is a free, automated, and open certificate authority (CA), run for the public’s benefit. It is a service provided by the Internet Security Research Group (ISRG). The key principles behind Let’s Encrypt are: Free: Anyone who owns a domain name can use...

Change SSH listen to port other than default 22

It is probably best to change the default SSH port to add some protection to your server. You need to change the SSH server’s configuration file by running the following command. nano /etc/ssh/sshd_config It opens up the config file in NANO editor. Look for the...

git: Adding files to ignore list

Adding files to .gitignore All you need to do is create a file in the root of the project and name it .gitignore. Then open the file and add the list of files and directories, you want to add to the ignore list. Ignoring individual files and folders /wp-config.php...

How to Install HTOP on RedHat and Centos

What is HTOP HTOP is a great tool to monitor a linux server’s live performance. I shows the number of CPU cores, work load on each core, average load on the CPU, memory (RAM) being used and a list of processes running like the TOP.   Installation To install...