- 外网访问配置
- 配置规则:出方向、入方向
协议类型:自定义 TCP 端口范围:8080/8080 授权对象:0.0.0.0/0
- 一定要把实例加入安全组,选择某个安全组,加入即可。
-
nginx
访问出现403 Forbidden
// nginx.conf user root; // 用户权限配置 //... http { server { listen 8080; server_name xx.xxx.xxx.xx; location / { root html; index index.html index.htm; } } // ... }
网友评论