在CentOS 6中安装​​httpd服务

HTTPD(超文本传输协议守护进程)是一种Web服务器CentOS的广泛使用和Redhat Linux.It服务于客户端的请求的网页。它是由Apache的基础上开发。 HTTPD是很容易的安装和配置。 使用yum安装的httpd。
# yum install httpd
默认的httpd的基本配置是如下。
Configuration file: /etc/httpd/conf/httpd.conf
Port: 80
Document root: /var/www/html
Log file location: /var/log/httpd
在httpd的配置文件中设置虚拟主机下面附加的httpd中的配置文件设置
<VirtualHost *:80>
 ServerName www.youcl.com
 ServerAdmin support@youcl.com
 DocumentRoot /var/www/html
</VirtualHost>
启动httpd服务
# service httpd start
Confugure的httpd启动在系统启动。
chkconfig httpd on
赞(52) 打赏
未经允许不得转载:优客志 » 系统运维
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏