Set Up NGINX Server and Virtual Hosts
Set Up / Install sudo apt-get install nginx Create a New Directory under /var/www/html sudo mkdir -p /var/www/html/MyDomain.com/ Create a New INDEX.html under /var/www/html sudo vi /var/www/html/MyDomain.com/index.html Create the default INDEX.html page <html> <head> <title>www.MyDomain.com</title> </head> <body> <h1>This is your first virtual host</h1> </body> </html> Create the New Virtual Host File sudo cp … [Read more…]