使用 nginx 反向代理来处理 flash amf 请求,有什么陷阱吗?
我对 amf 的理解(这并不是那么好)是请求以二进制格式出现。
使用反向代理将这些请求传送到另一台服务器并退出时需要注意哪些陷阱?
谢谢。
my understanding of amf (which isnt all that great) is that the requests come in binary format.
any pitfalls to be aware of when using a reverse proxy to pipe these requests to another server, and back out?
thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AMF 通信封装在 HTTP POST 中以减少处理复杂性。因此,使用代理应该不会有问题。
AMF communications are wrapped in an HTTP POST to reduce processing complications. As such, you should have not troubles using a proxy.