很强(推荐):
https://www.myfreax.com/how-to-install-nginx-on-ubuntu-20-04/
-
能ping通,但是无妨通过终端curl或者浏览器访问
https://zhuanlan.zhihu.com/p/571033119 -
能访问,但是出现403页面
——文件权限问题(比如有些文件是否授权能被互联网访问等)
——用户问题(www.data/root能,在ngixn配置文件中的user就是用户问题) -
nginx访问规则
一般是在http上下文当中添加server即可,可参考官网
设置好后,记得重启nginx
server {
listen 9090; #监听端口
server_name localhost; #域名
index index.html index.htm index.php index.jsp;
root /usr/local/webserver/nginx/html; #站点目录
}
ps: https://juejin.cn/post/6992078839652286477
网友评论