Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们想用 Python 编写我们的 Web 应用程序以供高流量使用(800 req/sec),但我们不知道哪个 Web 服务器和模块是最好的。
我们实际上认为Apache2 + mod_wsgi是一个不错的选择,但也许 Apache2 + FastCGI 或 Nginx + mod_wsgi 或 FastCGI 会更好。
有任何想法吗?
我可能会选择 - Apache2(mod_wsgi) + Nginx(Proxy) 。Nginx 将提供静态内容并将动态内容请求定向到 Apache2 服务器。这将提高您的应用程序的性能。
我建议Gunicorn + Nginx 代理