灵魂腐蚀 发表于 2015-1-14 20:17:20

给大家带来CentOS7装置Apache HTTP Server

如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!RPM装置httpd
#yum-yinstallhttpd
//装置httpd会主动装置一下依附包:
apr
apr-util
httpd-tools
mailcap
#rpm-qihttpd
Name:httpd
Version:2.4.6
Release:18.el7.centos
Architecture:x86_64
InstallDate:Mon11Aug201402:44:55PMCST
Group:SystemEnvironment/Daemons
Size:9793373
License:ASL2.0
Signature:RSA/SHA256,Wed23Jul201411:21:22PMCST,KeyID24c6a8a7f4a80eb5
SourceRPM:httpd-2.4.6-18.el7.centos.src.rpm
BuildDate:Wed23Jul201410:49:10PMCST
BuildHost:worker1.bsys.centos.org
Relocations:(notrelocatable)
Packager:CentOSBuildSystem<http://bugs.centos.org>
Vendor:CentOS
URL:http://httpd.apache.org/
Summary:ApacheHTTPServer
Description:
TheApacheHTTPServerisapowerful,efficient,andextensiblewebserver.


修正设置文件
#cd
/etc/httpd/conf
#ls
httpd.conf
magic
#cphttpd.confhttpd.conf.origin//将原有设置文件备份
#morehttpd.conf
//检察设置文件,我们注重到以一设置:
DocumentRoot"/var/www/html"

//出格是要注重这个设置
//这是Apache2.4的一个新的默许值,回绝一切的哀求!

<Directory/>
AllowOverridenone
Requirealldenied
</Directory>

//设置为主动启动
#systemctlenablehttpd.service
ln-s/usr/lib/systemd/system/httpd.service/etc/systemd/system/multi-user.target.wants/httpd.service
//在centos7中chkconfighttpdon被交换成systemctlenablehttpd


设置WEB站点(假定利用/wwwroot目次下的文档)

//创立两个网站的目次布局及测试用页面文件
#mkdir/wwwroot/www
#echo"www.ckuyun.com">/wwwroot/www/index.html

#mkdir/wwwroot/crm
#echo"crm.bigcloud.local">/wwwroot/crm/index.html
//设置假造机主机
#cd/etc/httpd/
#mkdirvhost-conf.d
#echo"Includevhost-conf.d/*.conf">>conf/httpd.conf

#vi/etc/httpd/vhost-conf.d/vhost-name.conf
//增加以下内容
<VirtualHost*:80>
ServerNamewww.ckuyun.com
DocumentRoot/wwwroot/www/
</VirtualHost>
<Directory/wwwroot/www/>
Requireallgranted
</Directory>

<VirtualHost*:80>
ServerNamecrm.bigcloud.local
DocumentRoot/wwwroot/crm/
</VirtualHost>
<Directory/wwwroot/crm/>
Requireip192.168.188.0/24//能够设置会见限定
</Directory>




欢迎大家来到仓酷云论坛!

第二个灵魂 发表于 2015-1-15 13:53:16

给大家带来CentOS7装置Apache HTTP Server

小白一个顶一下

深爱那片海 发表于 2015-1-24 15:19:12

生成新的unispimsp.ksc。”另外得到回复后如果问题解决,向帮助过你的人发个说明,让他们知道问题是怎样解决的。

再现理想 发表于 2015-2-2 06:52:22

生成新的unispimsp.ksc。”另外得到回复后如果问题解决,向帮助过你的人发个说明,让他们知道问题是怎样解决的。

透明 发表于 2015-2-7 18:52:39

下面看看一个让人无法回答的问题:“救命各位高手,向你们请教一些问题:如何在Linux下配制HTTP、FTP、Samba、DNS、DHCP、Sendmail服务器,谢谢”这样的问题。

山那边是海 发表于 2015-2-23 09:48:45

感谢老师和同学们在学习上对我的帮助。

柔情似水 发表于 2015-3-7 09:46:56

我们自学,就这个循环的过程中,我们学习了基本操作,用vi,shell,模拟内存的分配过程等一些OS管理。

分手快乐 发表于 2015-3-15 00:46:51

这种补充有助于他人在邮件列表/新闻组/论坛中搜索对你有过帮助的完整解决方案,这可能对他们也很有用。

若相依 发表于 2015-3-21 19:05:05

目前全球有超过一百多个Linux发行版本,在国内也能找到十几个常见版本。如何选择请根据你的需求和能力,RedhatLinux和DebianLinux是网络管理员的理想选择。
页: [1]
查看完整版本: 给大家带来CentOS7装置Apache HTTP Server