apache
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了apache相关的知识,希望对你有一定的参考价值。
1.apache安装
1.yum install httpd 安装httpd
2.systemctl start httpd 开启httpd服务
3.systemctl enable httpd 设置开机自启
4.使用网站登录你主机IP测试httpd服务是否正常
2.apache配置
1./etc/httpd 服务目录
2./etc/httpd/conf/httpd.conf 主配置文件
3./etc/httpd/conf.d/ 配置文件(会自动加载到主配置 可以自己创建配置文件放此处)
4./var/www/html/ 网站数据目录
5./var/log/httpd/access_log 访问日志
6./var/log/httpd/error_log 错误日志
主配置文件参数(/etc/httpd/conf/httpd.conf)
ServerRoot 服务目录
ServerAdmin 管理员邮箱
User 运行服务的用户
Group 运行服务的组
ServerName 网站服务器域名
DocumentRoot 网站数据目录
Listen 监听的IP地址与端口号
DirectoryIndex 默认的索引页界面(Index.html)
ErrorLog 错误日志文件
uCustomLog 访问日志文件
Timeout 网页超时时间,默认30s
Include 需加载的其他文件
以上是关于apache的主要内容,如果未能解决你的问题,请参考以下文章