Vultr PING 通但无法连接问题解决方案

2023-03-16  本文已影响0人  太平洋_cfd2

很强(推荐):
https://www.myfreax.com/how-to-install-nginx-on-ubuntu-20-04/

  1. 能ping通,但是无妨通过终端curl或者浏览器访问
    https://zhuanlan.zhihu.com/p/571033119

  2. 能访问,但是出现403页面
    ——文件权限问题(比如有些文件是否授权能被互联网访问等)
    ——用户问题(www.data/root能,在ngixn配置文件中的user就是用户问题)

  3. 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
上一篇 下一篇

猜你喜欢

热点阅读