Nginx开启目录浏览
系统为centos8
Nginx默认目录:/usr/share/nginx/html
Nginx主要配置文件:/etc/nginx/nginx.conf
1 | vi /etc/nginx/nginx.conf |
将下面几行配置文件加入nginx配置的server段内:
1 | autoindex on; |
重启nginx服务:
1 | systemctl restart nginx |
参考链接:centos8自定义目录安装nginx
评论
系统为centos8
Nginx默认目录:/usr/share/nginx/html
Nginx主要配置文件:/etc/nginx/nginx.conf
1 | vi /etc/nginx/nginx.conf |
将下面几行配置文件加入nginx配置的server段内:
1 | autoindex on; |
重启nginx服务:
1 | systemctl restart nginx |
参考链接:centos8自定义目录安装nginx