软件公司是干嘛的,seo网站优化做什么,本地数据库搭建网站,河北招投标信息服务平台在CentOS服务器上装好了nginx#xff0c;直接通过公网ip可以正常显示nginx 的 index.html页面。同时我在3000端口跑了node应用#xff0c;现在我想通过 公网ip:8089的形式访问nginx的配置代码#xff1a;server {listen 8089;server_name 公网ip;location / {root /usr/web;…在CentOS服务器上装好了nginx直接通过公网ip可以正常显示nginx 的 index.html页面。同时我在3000端口跑了node应用现在我想通过 公网ip:8089的形式访问nginx的配置代码server {listen 8089;server_name 公网ip;location / {root /usr/web;proxy_pass http://127.0.0.1:3000;index index.html;}}奇怪的是当监听端口是80的时候就没有问题其他端口都不行。防火墙也开放了8089端口关掉也不行[rootVM_102_32_centos conf]# service iptables statusTable: filterChain INPUT (policy ACCEPT)num target prot opt source destination1 ACCEPT tcp -- 0.0.0.0/0 0.0.0.0/0 state NEW tcp dpt:8089请问下大家是哪里的问题呢不胜感激 (●ω●)2017.1.16 更新问题解决了是腾讯云服务器安全组没有开放8080端口在腾云讯后台添加配置就可以了