Ubuntu下简单的apache虚拟主机
1.基于域名编辑/etc/apache2/sites-available/default并在结尾处添加一个VirtualHost
<VirtualHost *>
ServerName ubuntuServer
DocumentRoot /root/www/
</VirtualHost>
重启apache服务
/etc/init.d/apache2 restart
2.基于端口
编辑/etc/apache2/sites-available/default并在结尾处添加一个VirtualHost
<VirtualHost *:8000> //*或者本地IP
ServerName ubuntuServer
DocumentRoot /root/www/
</VirtualHost>
编辑/etc/apache2/port.conf并添加一行
Listen 8000
重启apache服务
/etc/init.d/apache2 restart
页:
[1]