문제

In a related question I'm trying to figure out how a Python web application "ties together" from end to end, and I've been making the assumption that Apache/lighttpd/nginx is required with a WSGI module. (Let's assume I'm serving static content using a CDN.)

Is it possible to skip WSGI and use the gevent library to serve clients directly?

도움이 되었습니까?

해결책

gevent doesn't include a pre-made HTTP server, but it could be possible to write one using gevent.server. It's probably easier to use a lightweight WSGI container such as Paste Deploy though.

다른 팁

You could but won't want to for non-toy applications, as its capabilities/security are limited. Nginx is a perfect companion though.

The author of gevent recommends using gunicorn.

Skipping wsgi (rather than the second http server) doesn't make much sense. It is merely a convention for programs to interface with each other.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top