博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos7 apache2.4 多站点配置
阅读量:5990 次
发布时间:2019-06-20

本文共 1033 字,大约阅读时间需要 3 分钟。

hot3.png

1.apache主配置文件引入文件

#Include conf/extra/http-vhosts.conf

取消注释或在其下另Include conf/vhosts.conf 文件并创建

配置内容大致为:

<VirtualHost _default_:80>

DocumentRoot "/usr/local/apache2/htdocs"
  <Directory "/usr/local/apahce2/htdocs">
    Options -Indexes +FollowSymLinks
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>

    DocumentRoot "/website/www.bxduan.com"
    ServerName www.bxduan.com
    ServerAlias
  <Directory "/website/www.bxduan.com">
      Options Indexes FollowSymLinks
      AllowOverride None
      Require all granted
  </Directory>
</VirtualHost>

<VirtualHost *:80>

    DocumentRoot "/website/sc.bxduan.com"
    ServerName sc.bxduan.com
    ServerAlias
  <Directory "/website/sc.bxduan.com">
      Options Indexes FollowSymLinks
      AllowOverride None
      Require all granted   ####apache2.4后该命令可取代  Order allow,deny  (回车) Allow from all
  </Directory>
</VirtualHost>

 

关于相关配置问题,可查看配置文件中的conf/extra/http-vhosts.conf文件中的注释中的链接,如http://httpd.apache.org/docs/2.4/。配置好保存后可通过apache bin目录下的httpd命令-S选项查看配置。

2.权限问题,需给各站点根目录,755权限。

转载于:https://my.oschina.net/u/3171768/blog/1550717

你可能感兴趣的文章
db2归档日志和在线日志清理
查看>>
maven生成项目骨架时报错ResourceManager : unable to find res
查看>>
linux 后台执行命令
查看>>
linux 使用pssh批量部署tomcat
查看>>
http和https支持
查看>>
第二课unit7 访问网络文件共享服务
查看>>
python基础5
查看>>
练习题
查看>>
硬盘显示无法访问设备硬件出现致命错误,导致请求失败,里面的文件怎样寻回...
查看>>
数据表操作类
查看>>
Linux中more和less命令用法
查看>>
vim的使用(一)
查看>>
shell思路
查看>>
disable or hide the reference icon before every re
查看>>
Zookeeper技术:分布式架构详解、分布式技术详解、分布式事务
查看>>
用户与组的管理详解
查看>>
一文详解大规模数据计算处理原理及操作重点
查看>>
【更新】CLion v2018.3发布(三):新的IDE操作
查看>>
手机图片压缩大小的方法,用什么软件压缩
查看>>
Tengine新增nginx upstream模块的使用
查看>>