怎么部署apache服务器
时间:2019-11-02 13:52
怎么部署apache服务器 apache的部署很简单,下面以centos系统为例,讲解如何部署apache服务器。 1、Apache服务器的安装 2、apache默认站点目录为 /var/www/html 可以使用vim编辑器修改主页文件 3、浏览器输入IP访问 以上只是简单的部署了apache服务器,更多设置推荐学习《Apache和MySQL安装使用教程》 更多PHP相关知识,请访问PHP中文网! 以上就是怎么部署apache服务器的详细内容,更多请关注gxlcms其它相关文章!yum install httpd -y
# 启动
systemctl start httpd
# 关闭防火墙
systemctl stop firewalld
vim /var/www/html/index.html