Server
a computer provides services or resources
What is a server?
A computer that provides services or resources. The programs on that computer makes them servers, jusk like your laptop could be a DB server if you install MySQL and let other computers access into.

Apache Web Server
Nginx web server
# install Nginx
sudo apt-get install -y nginx
# confirm Nginx is running
ps auwx | grep nginx
Commands
# check server timezone
# EST
date +%Z
timedatectl
# change timezone to America/New_York
sudo timedatectl set-timezone America/New_York
# update OS
sudo apt-get update
Last updated