In this article, we will see how to install and configure Apache2 web server in Ubuntu 16.04
Note: Throughout this article, we will be referring to the domain name as website1-example.com. Replace this domain name with your actual domain name whenever required.
SEE ALSO: Deep Learning: the final Frontier for Time Series Analysis?
Step 1: Install Apache2 web server
We will begin by updating the local package to reflect the latest upstream changes. Afterwards we can install the Apache2 package.
$ sudo apt-get update $ sudo apt-get install apache2
The status can be check by running the following commands.
$ sudo systemctl status apache2<span style="font-weight: 400;">
You can access the default apache landing page to confirm that the software is running properly. Access this through your server’s domain name or IP address.
Step 2: Check web server
Run the below command to make sure the service is running:
$ sudo systemctl status apache2<span style="font-weight: 400;">
Now you can access the default apache landing page to confirm that the software is running properly. You can access it through your server’s domain name or IP address.
For example: http://www.website1-example.com
Step 3: Create virtual host
In Apache on Ubuntu, all the virtual host configuration files are stored under /etc/apache2/sites-available directory. With the new Apache installation you can find a default virtual host file called 000-default.conf there. We will create a new virtual host configuration file by copying 000-default.conf file.
$ sudo cp /etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/website1-example.com.conf<span style="font-weight: 400;">
Open your virtual host file,
$ sudo nano /etc/apache2/sites-available/website1-example.com.conf<span style="font-weight: 400;">
The file should look like the following:
<VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost><span style="font-weight: 400;">
Now edit this file as per your requirement. My configuration looks like below:
<VirtualHost *:8090> ServerAdmin [email protected] ServerName website1-example.com ServerAlias www.website1-example.com DocumentRoot /var/www/website1-example.com <Directory /var/www/website1-example.com> Options Indexes FollowSymLinks MultiViews AllowOverride All Require all granted allow from all </Directory> ErrorLog /var/www/website1-example.com/error.log CustomLog /var/www/website1-example.com/access.log combined </VirtualHost><span style="font-weight: 400;">
- ServerAdmin: Server admin’s email address.
- ServerName: The domain that should match for this virtual host configuration. This should be your domain name. i.e. website1-example.com
- ServerAlias: It is an additional matching condition that needs to be processed. i.e. http://www.website1-example.com
- DocumentRoot: The directory from which Apache will serve the domain files.
- Options: This directive controls which server features are available in a specific directory.
- ErrorLog, CustomLog: Specifies the location of log files.
Step 4: Create project directory
By default the document root directory is /var/www/html. We will create a website1-example.com directory in www directory as defined in the above virtual host configuration.
$ sudo mkdir /var/www/website1-example.com
Now let’s create a test HTML file called index.html in a root directory we just created in a previous step.
$ sudo nano /var/www/website1-example.com/index.html
Add the following code to the file and then save it.
<html> <head> <title>website1-example.com</title> </head> <body> <h2> Welcome to website1-example.com </h2> </body> </html>
Step 5: Enable the virtual host
Enable the virtual host using the a2ensite tool:
$ sudo a2ensite website1-example.com.conf
Apply the changes to Apache:
$ sudo service apache2 reload
Next, open /etc/hosts file in editor and add your domain/IP address like you see below:
$ sudo nano /etc/hosts [...] 127.0.0.1 localhost your-domain your-sever-name.com
For example:
13.233.10.119 website1-example.com [...]
Save and close the file.
Step 6: Enable CORS
Now we will enable CORS on apache2 server. CORS is a process which tells browsers to access resources from different origin (domain, protocol, port) via HTTP headers.
Enable headers by typing:
$ sudo a2enmod headers
Open /etc/apache2/apache2.conf file by typing following command and add cross-origin headers in <Directory> section
$ sudo nano /etc/apache2/apache2.conf
For example:
SEE ALSO: Facebook AI’s Demucs teaches AI to hear in a more human-like way
Step 7: Enable ports
If you are using ports other than default port number 80 then we need to enable that port. In step 3 we have configured a virtual host on port 8090. Let’s enable port 8090 in Apache2.
Open /etc/Apache2/ports.conf file. In this file add your port number.
For example:
$ sudo nano /etc/apache2/ports.conf [...] Listen 80 Listen 8090 [...]
Save and close the file.
Restart your apache2 service to reflect all changes.
$ sudo service apache2 restart
The post How to install and configure Apache2 appeared first on JAXenter.
Source : JAXenter