欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

nginx配置反向代理restfull接口

程序员文章站 2022-06-12 09:00:25
...
nodejs写好的restfull,如:http://172.16.0.1:4050/alipayapi,
带端口的api安全和管理性都不理想,使用nginx的反向代理很简单;
http{
    ```
    ```
    server{
        ```
        ```#proxy start
        location /alipayapi {
            proxy_pass http://127.0.0.1:4050/alipay
        }
        #proxy end
    }
}

配置好proxy反向代理后重启nginx服务器,客户端的api请求可以改为http://172.16.0.1/alipaiapi

').addClass('pre-numbering').hide(); $(this).addClass('has-numbering').parent().append($numbering); for (i = 1; i ').text(i)); }; $numbering.fadeIn(1700); }); });

以上就介绍了nginx配置反向代理restfull接口,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。