You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[root@jdu4e00u53f7 ~]# nginx -t
nginx: the configuration file /etc/nginx/nginx.conf syntax is ok
nginx: configuration file /etc/nginx/nginx.conf test is successful
最近换了个新的云主机,重新配置了下centos的环境。记录下Nginx反向代理centos的80端口的流程。
HTTP请求是80端口,但是在Linux上非root权限是无法使用1024以下端口的,并且因为安全原因,最好不要使用root权限登录服务器,所以无法直接用node.js程序监听80端口。因此我们需要使用Nginx给node.js做反向代理,将80端口指向应用程序监听的端口(如node.js默认的3000端口)。
2.下载Nginx
3.启用nginx服务
4.添加开机启动
5.修改Nginx配置文件
6.进入配置文件后修改下
7.测试配置文件是否能够正确运行
出现这样,证明配置成功
8.重启nginx
现在直接在浏览器中输入我们配置的域名就可以访问我们的项目了。
ps:如果你用的云主机是国内的,那么你的域名必须先备案才能访问,不然只能域名加后端端口号访问了,如www.hxvin.com:4000
The text was updated successfully, but these errors were encountered: