系统相关
首页 > 系统相关> > nginx工作中配置

nginx工作中配置

作者:互联网

server{
        listen    8080;
        location  / {
             root   /opt/iot/community/public/;
             index  index.html;   
                    }
        location /callComponent {
            proxy_pass http://127.0.0.1:8012;
                                 }
          }
 

监听8080端口,默认首页为public目录下index.html

登陆等接口,通过proxy_pass转发至8012;

标签:index,工作,配置,public,nginx,html,location,pass,8012
来源: https://blog.csdn.net/riju4713/article/details/118596326