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.
我正在使用 python buildout 并希望部署一个 diazo wsgi。到目前为止,我设法做到了,但我想让应用程序监听套接字文件,而不是 Ip:Port。
是否可以使用 paste.httpserver 或者是否有一个仅提供套接字的替代包来提供服务。
确实,有可能waitress
waitress
首先bin/pip install waitress,然后查看您的 proxy.ini 并编辑该server:main部分,以使用 waitress 而不是paste.httpserver
bin/pip install waitress
server:main
paste.httpserver
[server:main] use = egg:waitress#main unix_socket = var/run/diazo.sock
瞧。Paster 现在在 unix 套接字上提供 HTTP 服务。