使用paste.deploy来服务扭曲的应用程序
我正在开发一个由两部分组成的项目:
- 一个使用 pylon 编写的支持 WSGI 的 Web 应用程序,并使用 python-paste 提供服务
- 一个与 HTTP 无关的 python-twisted 应用程序/code> 或
WSGI
。
我想将两个应用程序的配置保留在同一个配置文件中。我还想使用pasteserve
来启动WSGI
服务器和twisted服务器。
这可能吗?我可以配置 paste
来理解扭曲的 .tac
文件吗?
I'm working on a project that has two parts:
- A WSGI-enabled web app written with pylons and served with
python-paste
- A python-twisted application that has nothing to do with
HTTP
orWSGI
.
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试图做到这一点极不可能值得付出努力。 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 withtwistd
.