博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CentOS7安装配置Apache HTTP Server
阅读量:6412 次
发布时间:2019-06-23

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

  hot3.png

RPM安装httpd

yum -yinstall httpd

//安装httpd会自动安装一下依赖包: apr apr-util httpd-tools mailcap

rpm -qi httpd

Name : httpd Version : 2.4.6 Release : 18.el7.centos Architecture: x86_64 Install Date: Mon 11 Aug 2014 02:44:55 PMCST Group : System Environment/Daemons Size : 9793373 License : ASL 2.0 Signature : RSA/SHA256, Wed 23 Jul 2014 11:21:22 PM CST, Key ID 24c6a8a7f4a80eb5 Source RPM : httpd-2.4.6-18.el7.centos.src.rpm Build Date : Wed 23 Jul 2014 10:49:10 PM CST Build Host : worker1.bsys.centos.org Relocations : (not relocatable) Packager : CentOS BuildSystem Vendor : CentOS URL : Summary : Apache HTTP Server Description : The Apache HTTP Server is a powerful,efficient, and extensible web server. 修改配置文件

cd

/etc/httpd/conf

ls

httpd.conf magic #cp httpd.conf httpd.conf.origin //将原有配置文件备份

more httpd.conf

//查看配置文件,我们注意到以一配置: DocumentRoot"/var/www/html"

//特别是要注意这个配置 //这是Apache 2.4的一个新的默认值,拒绝所有的请求!

<Directory /> AllowOverride none Require all denied </Directory>

//设置为自动启动

systemctl enable httpd.service

ln -s'/usr/lib/systemd/system/httpd.service' '/etc/systemd/system/multi-user.target.wants/httpd.service' //在centos7中chkconfig httpd on 被替换成 systemctl enable httpd 配置WEB站点 (假设使用/wwwroot目录下的文档)

//创建两个网站的目录结构及测试用页面文件

mkdir/wwwroot/www

echo"www.bigcloud.local" > /wwwroot/www/index.html

mkdir/wwwroot/crm

echo"crm.bigcloud.local" > /wwwroot/crm/index.html

//配置虚拟机主机

cd/etc/httpd/

mkdirvhost-conf.d

echo"Include vhost-conf.d/*.conf" >> conf/httpd.conf

vi/etc/httpd/vhost-conf.d/vhost-name.conf

//添加如下内容 <VirtualHost *:80> ServerNamewww.bigcloud.local DocumentRoot /wwwroot/www/ </VirtualHost> <Directory /wwwroot/www/> Requireall granted </Directory>

<VirtualHost *:80> ServerNamecrm.bigcloud.local DocumentRoot /wwwroot/crm/ </VirtualHost> <Directory /wwwroot/crm/> Require ip192.168.188.0/24 //可以设置访问限制 </Directory>

转载于:https://my.oschina.net/yomut/blog/715060

你可能感兴趣的文章
unity3d 在安卓平台通过Native接口直接读取apk中assets目录下的文件
查看>>
RequireJS学习
查看>>
First Missing Positive
查看>>
tvOS视差按钮的ObjC实现
查看>>
终端自动提示插件的安装
查看>>
博鳌2019实录 | 机遇与挑战并存,中外行长共议金融科技 ...
查看>>
Oracle DG--Rman备份集搭建备库
查看>>
一个10年技术总监的3个求职方法论
查看>>
蚂蚁金服阳振坤:用10年时间打造一个“顶天立地”的产品 ...
查看>>
对话Roadstar投资人:一家自动驾驶公司之死(一) ...
查看>>
PostgreSQL psql 绘制饼图
查看>>
iPhone诞生以后,从此UI设计行业就迅速发生了翻天覆地的变化! ...
查看>>
java中字符串拼接过程中,StringBuilder和“+”的区别? ...
查看>>
原金立总裁卢伟冰加入小米,雷军发微博欢迎
查看>>
直播:Graph图数据库基础介绍及场景
查看>>
华为首次公布战略研究院 进入创新领航2.0时代
查看>>
P2S、P2P、P2SP之对比
查看>>
如何自学编程?学习方法在这里!
查看>>
苹果“开除”Facebook,原因是后者违反协议分发数据收集APP
查看>>
系统架构 一致性问题 : 库存扣减
查看>>