httpd-virtual

httpd虚拟机设置:

1.配置文件如下:


        ServerName web1.magedu.com
        DocumentRoot "/vhosts/web1/htdocs"
        CustomLog logs/web1_access_log combined

2.注释掉本机地址:

#DocumentRoot "/www/htdocs/"

3.增加ip地址:

ip addr add 192.168.1.106 dev ens33
#此处的设备名称根据实际情况,设置为dev+设置名,虚拟机默认ens33

4.关闭selinux与防火墙

#关闭selinux
setenforce 0
#关闭防火墙
systemctl stop firewall

 

你可能感兴趣的:(httpd-virtual)