一、配置服务器监听IP及端口
- 注释主配置文件“监听IP及端口”部分
cd /etc/httpd/conf
cp httpd.conf httpd.conf.bak
vim httpd.conf
可以在普通模式下搜索Listen关键字
:/Listen
按n键继续向后搜索
- 在/etc/httpd/conf.d中新建子配置文件port.conf:
touch /etc/httpd/conf.d/port.conf
echo "Listen 81" > /etc/httpd/conf.d/port.conf
或
touch /etc/httpd/conf.d/port.conf
echo "Listen 192.168.209.137:81" > /etc/httpd/conf.d/port.conf
- 重启加载httpd的配置文件
systemctl reload httpd
- 防火墙添加81端口
firewall-cmd --zone=public --add-port=81/tcp --permanent
firewall-cmd --reload
- curl命令访问81端口
curl 127.0.0.1:81
或
curl 192.168.209.137:81 #换成自己的IP
二、配置主页面
- 新建index.html测试页面
cd /var/www/html
rm -rf index.html
echo "hello,openEuler" > index.html
cat index.html
- 访问测试
curl 127.0.0.1:81
三、配置主页面存放目录(配置网站根目录)
- 更改根目录
mkdir /home/source
mv /var/www/html/index.html /home/source/
echo 'DocumentRoot "/home/source"'> /etc/httpd/conf.d/source.conf
- 配置目录访问权限
vim /etc/httpd/conf.d/source.conf
添加如下内容:
<Directory "/home/source">AllowOverride None#Allow open access:Require all granted
</Directory>
systemctl reload httpd
curl 127.0.0.1:81
备注:如遇到403
按3个方向排查:一是Selinux; 二是目录权限; 三是文件所有者
- Selinux
修改SELinux的状态
vim /etc/sysconfig/selinux
状态分为以下三种:
SELINUX=enforcing #selinux开启,级别为强制(华为openEuler系统选择服务server方式安装时默认为开启)
SELINUX=permissive #selinux开启,级别为警告
SELINUX=disabled #selinux关闭
在Linux系统中永久关闭SELinux的方法是修改SELINUX的配置文件,将SELINUX=enforcing改为SELINUX=disabled,然后保存退出并重启系
- 目录权限(R必须大写)
chown -R nginx:nginx /home/source
- 文件所有者
chmod -R 755 /home/source