给大家带来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>
欢迎大家来到仓酷云论坛!
给大家带来CentOS7装置Apache HTTP Server
小白一个顶一下 生成新的unispimsp.ksc。”另外得到回复后如果问题解决,向帮助过你的人发个说明,让他们知道问题是怎样解决的。 生成新的unispimsp.ksc。”另外得到回复后如果问题解决,向帮助过你的人发个说明,让他们知道问题是怎样解决的。 下面看看一个让人无法回答的问题:“救命各位高手,向你们请教一些问题:如何在Linux下配制HTTP、FTP、Samba、DNS、DHCP、Sendmail服务器,谢谢”这样的问题。 感谢老师和同学们在学习上对我的帮助。 我们自学,就这个循环的过程中,我们学习了基本操作,用vi,shell,模拟内存的分配过程等一些OS管理。 这种补充有助于他人在邮件列表/新闻组/论坛中搜索对你有过帮助的完整解决方案,这可能对他们也很有用。 目前全球有超过一百多个Linux发行版本,在国内也能找到十几个常见版本。如何选择请根据你的需求和能力,RedhatLinux和DebianLinux是网络管理员的理想选择。
页:
[1]