使用paste.deploy来服务扭曲的应用程序

发布于 2024-10-17 10:34:57 字数 336 浏览 2 评论 0原文

我正在开发一个由两部分组成的项目:

  1. 一个使用 pylon 编写的支持 WSGI 的 Web 应用程序,并使用 python-paste 提供服务
  2. 一个与 HTTP 无关的 python-twisted 应用程序/code> 或 WSGI

我想将两个应用程序的配置保留在同一个配置文件中。我还想使用pasteserve来启动WSGI服务器和twisted服务器。

这可能吗?我可以配置 paste 来理解扭曲的 .tac 文件吗?

I'm working on a project that has two parts:

  1. A WSGI-enabled web app written with pylons and served with python-paste
  2. A python-twisted application that has nothing to do with HTTP or WSGI.

I'd like to keep the configuration for both apps in the same configuration file. I'd also like to use paste serve to launch both the WSGI server and the twisted server.

Is this possible? Can I configure paste to understand twisted .tac files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迟到的我 2024-10-24 10:34:57

试图做到这一点极不可能值得付出努力。 Pasterserve 有自己的事件循环、线程池等,而 Twisted 应用程序期望的东西完全不同。

您可以尝试编写自己的 paster 子命令,但最好编写一个 .tac 文件,该文件为两个应用程序提供服务,以便与 twistd 一起使用。

It is extremely unlikely that trying to do this is going to be worth the effort. paster serve has it's own event loop, threadpool, etc. and Twisted apps expect something quite different.

You could try writing your own paster subcommand, but you're probably better off writing a .tac file that serves both apps for use with twistd.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文