1、安装nginx.(省略步骤)
2、配置config
打开日志error_log logs/error.log; 注释去掉
3、配置转发
server {
listen 80;
location /apps/ {
# Node.js 在 9000 开了一个监听端口
proxy_pass http://127.0.0.1:8080/;
}
}
4、检查配置文件是否有错误
/usr/share/nginx/conf/nginx.conf -t
正常截图是
5、这时候要注意看看ng到底加载什么路径下conf文件(我的ng路径和conf文件在不通路径了)
启动时指定一下配置文件
nginx -c /usr/share/nginx/conf/nginx.conf
————————————————————-这一步困了我2天
6、启动后,访问正常了
借阅文档https://blog.csdn.net/qq_39595769/article/details/121139787
原创文章,作者:wdmbts,如若转载,请注明出处:https://blog.ytso.com/270408.html