python – 用uwsgi替换nginx

前端之家收集整理的这篇文章主要介绍了python – 用uwsgi替换nginx前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

似乎uwsgi能够做几乎我正在使用Nginx的任何东西:提供静态内容,执行PHP脚本,托管python web应用程序,……
所以(为了简化我的环境)我可以用uwsgi替换Nginx uwsgi而不会损失性能/功能吗?

最佳答案
As they say in the documentation

Can I use uWSGI’s HTTP capabilities in production?

If you need a load balancer/proxy it can be a very good idea. It will
automatically find new uWSGI instances and can load balance in varIoUs
ways. If you want to use it as a real webserver you should take into
account that serving static files in uWSGI instances is possible,but
not as good as using a dedicated full-featured web server. If you host
static assets in the cloud or on a CDN,using uWSGI’s HTTP
capabilities you can definitely avoid configuring a full webserver.

所以,是的,uWSGI比传统的Web服务器慢.

除了性能之外,在一个非常基本的应用程序中,你是对的,uWSGI可以完成网络服务器提供的所有功能.但是,如果您的应用程序随着时间的推移而增长/变化,您可能会发现传统的Web服务器提供的内容很多,而uWSGI则没有.

我建议使用您选择的语言设置部署脚本(例如Python的Fabric).我会说我的网络服务器是部署和安装的最简单的组件之一.在我们的应用程序堆栈中设置,并且最不“需要” – 除非我正在配置新服务器,否则它很少在我的雷达上.

原文链接:https://www.f2er.com/nginx/434476.html

猜你在找的Nginx相关文章