ubuntu apache2.4 添加虚拟主机简单的配置
在 /etc/apache2/sites-available 下面复制一份000-default.conf文件,为自己的网站的名字
内容
<Directory /var/www/html/meditech>
Options Indexes FollowSymLinks
AllowOverride None
Require all granted
</Directory>
<VirtualHost *:80>
ServerName meditech
ServerAdmin meditech
DocumentRoot /var/www/html/meditech
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>
,执行命令sudo a2ensite xxxxxxxx.conf,
这一步,将激活
配置文件。他的作用是生产一份链接到xxxxxxxx
.conf/etc/apache2/sites-enabled/
,为什么这样做呢,因为实际上apache2加载的就是该目录下所有的配置文件
,同时在/etc/hosts 文件中,加入一条 127.0.0.1 xxxxxxxx
然后重启启动apache2 服务,service apache2 restart