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.
在我的 VDS 上,我使用 nginx、django 和 tornado。我只有一个项目,现在我要部署另一个具有不同域名的项目。我想使用不同的数据库和文件夹。我知道如何配置 nginx 以提供静态资源,但是龙卷风呢?我应该为每个项目运行单独的龙卷风实例还是有更好的解决方案?
是的,通常您必须为不同的项目使用单独的 Tornado 实例(具有单独端口的进程),并为nginx 配置中每个域的proxy_pass指令使用不同的上游服务器。