1
00:00:00,240 --> 00:00:03,660
Now, we have made the entries in host file for three websites.

2
00:00:03,960 --> 00:00:07,760
Now we need to create the materials for three sites.

3
00:00:07,770 --> 00:00:13,970
So we will go into the /var/www/html directory and we will check whether there is some file or not.

4
00:00:14,280 --> 00:00:18,610
And there is with the ls command, you will find nothing there.

5
00:00:18,630 --> 00:00:23,970
Then we are going to create the directories, mkdir example1 example2 example3.

6
00:00:24,570 --> 00:00:33,380
Then with cat command with > symbol example1, we are going to create an index.html

7
00:00:33,400 --> 00:00:37,830
file in all the three directories, in first directory example1.

8
00:00:37,830 --> 00:00:39,390
we are going to put the data.

9
00:00:39,410 --> 00:00:46,500
Welcome to example1 site, in example2 directory, we are going to put the data in index.html file.

10
00:00:46,520 --> 00:00:54,850
welcome to example2 site, similarly in the example3 directory, we are going to put

11
00:00:54,850 --> 00:00:59,040
the data welcome to example3 site in that. 

12
00:00:59,040 --> 00:01:06,410
index.html file, with tree command we can verify our whole directory structure.

13
00:01:06,840 --> 00:01:19,770
So that mean, later on we will configure our httpd.conf configuration file

14
00:01:20,010 --> 00:01:27,840
that mean supply the data, for example1 website from this directory, for example2

15
00:01:27,840 --> 00:01:30,780
.com this directory, example3.com this directory.

16
00:01:30,990 --> 00:01:33,930
So for that purpose, we have to create this directory strcture.
