当前位置:Gxlcms > PHP教程 > nginx配置反向代理restfull接口

nginx配置反向代理restfull接口

时间:2021-07-01 10:21:17 帮助过:150人阅读

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 <= lines; i++) { $numbering.append($('
  • ').text(i)); }; $numbering.fadeIn(1700); }); });

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

  • 人气教程排行