ubuntu_nginx+nodejs(反向代理)

前端之家收集整理的这篇文章主要介绍了ubuntu_nginx+nodejs(反向代理)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

ubuntu下,@R_403_196@ 监听某端口反向代理到本地路径(差不多是这个意思)

server{

listen 80;

listen [::]:80;

server_name 站点名称

root本地站点路径

index index.html index.htm;

location / {

proxy_pass http://127.0.0.1:1234; //反向代理 node 监听的端口

include proxy_params;

}

}

原文链接:/ubuntu/354640.html

猜你在找的Ubuntu相关文章