Notes on apache

Three files need to be changed to add a virtual machine

// httpd-vhosts.conf
<VirtualHost *:83>
	ServerName myyii3test.com

// hosts
127.0.0.1	myyii3test.com
::1	myyii3test.com

// httpd-conf
Listen [::0]:82
Listen 0.0.0.0:83

 

Guess you like

Origin blog.csdn.net/weixin_38230961/article/details/114267819