Example of creating a virtual host based on Apache port

Example of creating a virtual host based on Apache port

apache: create virtual host based on port

Take creating virtual hosts (a, b, c) as an example

1) 2.1.2 Disable the default host mode

[root@localhost httpd]# vim /etc/httpd/conf/httpd.conf
Comment out the following line in the main configuration file #DocumentRoot "/var/www/html"

2) Add the listening port in the main configuration file

Find the Listen line and add a line Listen 8080 based on the original line Listen 80 
Listen 81

3) Add port configuration virtual

[root@localhost httpd]#vim /etc/httpd/conf.d/virtualhost.conf
<VirtualHost 192.168.87.131:80>
  DocumentRoot "/var/www/a"
  ServerName www.a.com
</VirtualHost>
<VirtualHost 192.168.87.131:8080>
  DocumentRoot "/var/www/b"
  ServerName www.b.com
</VirtualHost>
<VirtualHost 192.168.87.131:81
  DocumentRoot "/var/www/c"
  ServerName www.c.com
</VirtualHost>

4) Create a new directory

[root@localhost conf.d]# cd /var/www 
[root@localhost www]# mkdir abc
[root@localhost www]# echo welcome to www.a.com >> ./a/index.html
[root@localhost www]# echo welcome to www.b.com >> ./b/index.html
[root@localhost www]# echo welcome to www.c.com >> ./c/index.html

5) Restart httpd

[root@localhost ~]#systemctl restart httpd

Note: Be sure to restart httpd!!!

Final result:

insert image description here

This is the end of this article about examples of creating virtual hosts based on Apache ports. For more information about creating virtual hosts based on Apache ports, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to add ports to Apache virtual hosts
  • Apache configuration multi-port multi-virtual host LAN access example
  • In-depth introduction to the method of configuring virtual hosts for Apache multi-port in Linux environment
  • Windows Apache multi-port virtual host configuration method

<<:  CSS Reset style reset implementation example

>>:  Vue multi-page configuration details

Recommend

Tutorial on installing JDK Tomcat MySQL on Linux (remote access using Mac)

One environment Alibaba Cloud Server: CentOS 7.4 ...

CentOS 6.5 i386 installation MySQL 5.7.18 detailed tutorial

Most people compile MySQL and put it in the syste...

Detailed tutorial on installing harbor private warehouse using docker compose

Overview What is harbor? The English word means: ...

Let's talk about the storage engine in MySQL

Basics In a relational database, each data table ...

Solution to MySQL connection exception and error 10061

MySQL is a relational database management system ...

How to install vncserver in Ubuntu 20.04

Ubuntu 20.04 has been officially released in Apri...

3D tunnel effect implemented by CSS3

The effect achievedImplementation Code html <d...

Vue implements form validation function

This article mainly describes how to implement fo...

Sample code for easily implementing page layout using flex layout

Without further ado, let's get straight to th...

9 Tips for MySQL Database Optimization

Table of contents 1. Choose the most appropriate ...

CSS3 implementation example of rotating only the background image 180 degrees

1. Mental Journey When I was writing the cockpit ...

A brief discussion on the optimization of MySQL paging for billions of data

Table of contents background analyze Data simulat...

Detailed steps for installing nodejs environment and path configuration in Linux

There are two ways to install nodejs in linux. On...

202 Free High Quality XHTML Templates (2)

Following the previous article 202 Free High-Qual...