http配置虚拟主机

1、设置虚拟主机通过/srv/default/www来为占位符站点提供内容。

创建目录 mkdir -p /srv/{default,allen}/www

2、使用文本编辑器创建index.html文化。/srv/defaul/www/www/index.文本内容 allen comming soon、在 /srv/allen/www/index/index 文件内容为allen。

3、重置上下文

restorecon -Rv /srv/

4、为 default:80 创建虚拟主机定义。并使用组合格式登录到logs/default-vhost.log

[root@solr1 conf.d]# cat default-vhost.conf

  DocumentRoot /srv/default/www

  CustomLog "logs/default-vhost.log" combined

#打开默认虚拟主机的内容目录

  Require all granted #允许访问此目录,Require all Denied 将拒绝提供此目录的内容。

5、为allen-vhost.conf配置内容。

[root@solr1 conf.d]# cat allen-vhost.conf

  ServerName allen.com

  ServerAlias allen

  DocumentRoot /srv/allen/www

  CustomLog "logs/allen.log" combined

  Require all granted

6、配置完成并启动httpd服务

systemctl start httpd.service

7、访问显示default的返回结果。


http配置虚拟主机_第1张图片

访问显示allen的返回结果。


http配置虚拟主机_第2张图片

你可能感兴趣的:(http配置虚拟主机)