How to Create An Apache 2 Virtual Host on Linux Mint 18 Easy Guide

April 23, 2019 | By the+gnu+linux+evangelist.

Making Apache 2 Virtual Hosts on Linux Mint

Hi! The Tutorial shows you Step-by-Step How to Getting-Started with Apache 2 Virtual Host on Linux Mint 18.x Sarah/Serena/Sonya/Sylvia Desktop.

And the term Virtual Host refers to the Practice of Running more than One Website (such as company1.example.com and company2.example.com) on a Single Machine.

Virtual Hosts can be:

  • Name-based“, meaning that you have Multiple Names running on each IP address
  • IP-based“, meaning that you have a Different IP Address for Every Website

The fact that they are Running on the Same Physical Server is Not Apparent to the End User.

Apache 2 Virtual Host Quick Start on Linux Mint 18 - Featured

How to Create a Name-based Virtual Host on Linux Mint

  1. Or Open a Command Line Terminal Window
    (Press “Enter” to Execute Commands)

    Create Apache 2 Virtual Host on Linux Mint 18 - Open Terminal

    In case first see: Terminal QuickStart Guide.
    Or Login into Server Shell Shell.

  2. How to Install LAMP Server on Linux Mint.

    LAMP Server Installation Linux Mint
  3. Add the Domain to the hosts Config File.

    su 

    If Got “User is Not in Sudoers file” then see: How to Enable sudo

    nano /etc/hosts

    Append:

    127.0.0.1 [myDomainName.com]
    

    Only Substitute your real Domain Name to “[myDomainName.com]” :)
    Ctrl+Shift+v to Paste Content on nano
    Ctrl+x to Save and Exit from nano Editor

  4. Create the VHost Target Directory.

    mkdir /var/www/html/[mySite]

    And may be also a Testing index.html:

    echo "My New WebSite is Working! :)" > /var/www/html/[mySite]/index.html

    Then Set the Domain’s Ownership with:

    chown -R www-data:www-data /var/www/html/[mySite]
  5. Create a VHost Config File.

    nano /etc/apache2/sites-available/[myDomainName].conf

    Append at Least:

    <VirtualHost *:80>
    ServerName[myDomainName.com]
    ServerAliaswww.[myDomainName.com]
    DocumentRoot /var/www/html/[mySite]
    </VirtualHost>
    

    To get a little More Insight may look:

    cat /etc/apache2/sites-available/000-default.conf
  6. Enabling the New Virtual-Host.

    cd /etc/apache2/sites-enabled
    ln -s ../sites-available/[myDomainName].conf .
  7. Restart Apache2 Web Server.

    service apache2 restart
    exit
  8. How to Enable Apache2 mod_rewrite Module on Linux Mint.

    Enabling Apache2 Rewrite for Linux Mint

    How to Create a IP-based Virtual Host on Linux Mint

    How to Create an IP-Based Virtual Host on Linux Mint.

    Debian Apache2 IP Virtual-Host

QuickChic Theme • Powered by WordPress