美文网首页
http配置虚拟主机

http配置虚拟主机

作者: Al_不期而遇 | 来源:发表于2019-11-10 23:02 被阅读0次

    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

    <VirtualHost _default_:80>

      DocumentRoot /srv/default/www

      CustomLog "logs/default-vhost.log" combined

    </VirtualHost>

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

    <Directory /srv/default/www>

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

    </Directory>

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

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

    <VirtualHost *:80>

      ServerName allen.com

      ServerAlias allen

      DocumentRoot /srv/allen/www

      CustomLog "logs/allen.log" combined

    </VirtualHost>

    <Directory /srv/allen/www>

      Require all granted

    </Directory>

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

    systemctl start httpd.service

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

    访问显示allen的返回结果。

    相关文章

      网友评论

          本文标题:http配置虚拟主机

          本文链接:https://www.haomeiwen.com/subject/islzbctx.html