Apache 基金会的开源项目,是一个高性能、功能强大、安全可靠、灵活的开放源码 Web 服务软件
应用场景:
- 运行静态页面和图片
- 结合 PHP 引擎运行 PHP 程序
- 结合 Tomcat 运行 JAVA\JSP 程序
- 做代理、负载平衡
安装
文件目录:/etc/httpd/,包含配置文件、模块文件、日志文件yum install httpd.x86_64 -y
systemctl start httpd
systemctl enable httpd
ps -ef | grep apache
默认站点文件位置 :/var/www
启动文件:/usr/sbin/httpd配置
修改配置文件vim /etc/httpd/conf
```bash ServerRoot “/etc/httpd” #用于指定 Apache 运行的根目录 Listen 80 #监听 80 端口 MaxClients 256 #指定同时能访问服务器的客户机数量为 256 DocumentRoot “/var/www/html” #网页文件存放的目录 DirectoryIndex index.html #默认网站主页 Include conf.d/.conf #读取 /etc/httpd/conf/conf.d/ 目录中所有以配置文件 ServerName www.yuwei.cc #域名 ServerAdmin #设置管理员的邮箱 Include conf.d/.conf #包含的子配置文件 User apache #用户是 apache Group apache #用户组是 apache Directory #认证授权和访问控制