这是一个初学者的问题,但我无法理解Gunicorn和Nginx之间的抽象.我不是在寻找一个详细的答案,只是在高层次上每个人扮演的角色是什么?他们如何互动?
解决方法:
根据Gunicorn’s deploy doc,我的理解是你使用Nginx作为Gunicorn的代理服务器.
由于Gunicorn从Ruby’s Unicorn开始移植,我假设Unicorn的限制和规格也适用于Gunicorn:
Unicorn is an HTTP server for Rack applications designed to only serve
fast clients on low-latency, high-bandwidth connections and take
advantage of features in Unix/Unix-like kernels. Slow clients should
only be served by placing a reverse proxy capable of fully buffering
both the request and response in between Unicorn and slow clients.
Although there are many HTTP proxies available, we strongly advise
that you use Nginx. If you choose another proxy server you need to
make sure that it buffers slow clients when you use default Gunicorn
workers. Without this buffering, Gunicorn will be easily susceptible
to denial-of-service attacks.
因此,Gunicorn提供快速,低延迟的高带宽客户端,Nginx为其他客户提供服务.
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 [email protected] 举报,一经查实,本站将立刻删除。