On Tue, Jan 14, 2014 at 11:24 PM, dv <[email protected]> wrote:
> For very low-traffic sites, it doesn't make sense to use a front-end http > server such as nginx, lighttpd etc. Yet, run_simple is great for > development but not suitable for production. Are there any known drop-in > replacements for run_simple? > If it's very low-traffic then run_simple is probably fine (as long as you have debugger off). Here are some other good options: https://pypi.python.org/pypi/waitress https://pypi.python.org/pypi/gunicorn/ https://uwsgi-docs.readthedocs.org/en/latest/ http://docs.cherrypy.org/dev/refman/wsgiserver/init.html -Steve -- You received this message because you are subscribed to the Google Groups "pocoo-libs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/pocoo-libs. For more options, visit https://groups.google.com/groups/opt_out.
