似乎uwsgi能够做几乎我正在使用Nginx的任何东西:提供静态内容,执行PHP脚本,托管python web应用程序,……
所以(为了简化我的环境)我可以用uwsgi替换Nginx uwsgi而不会损失性能/功能吗?
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).我会说我的网络服务器是部署和安装的最简单的组件之一.在我们的应用程序堆栈中设置,并且最不“需要” – 除非我正在配置新服务器,否则它很少在我的雷达上.