Apache常用功能
修改Apache网页根目录,需要修改两个参数
DocumentRoot 代表网页根目录
Directory 定义该目录的属性
1、修改httpd.conf
DocumentRoot 代表网页根目录
Directory 定义该目录的属性
DocumentRoot "/www/html"
<Directory "/www">
AllowOverride None # 不允许其他配置文件,覆盖现有配置
# Allow open access:
Require all granted # 允许所有请求
</Directory>
systemctl restart httpd
2、创建新的站点目录
mkdir -p /www/html
3、创建新的首页文件,index.html
vim /www/html/index.html
4、确保关闭服务器防火墙,以免影响实验
iptables -F
systemctl stop firewalld
systemctl disable firewalld
关闭自带的selinux防火墙,获取其状态,disabled说明防火墙关了
查看linux内置防火墙selinux
getenforce
5、重启Apache
systemctl restart httpd
修改apache默认运行端口
修改httpd.conf,修改如下参数
grep -i "^listen" /etc/httpd/conf/httpd.conf
Listen 85
网友评论