by whisky29 | Aug 23, 2017 | Server Management, Web Develpment
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...
by whisky29 | Mar 1, 2017 | Server Management, Web Develpment
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... by whisky29 | Jun 2, 2015 | Server Management
Pinging servers in Linux is easy. Just like we do on Windows cmd shell. Just write ping followed by IP address or domain name. # ping 192.168.1.1 by Atif N | Mar 19, 2014 | Server Management
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... by Atif N | Nov 27, 2013 | Server Management
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... by Atif N | Oct 25, 2013 | Server Management
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...