mod_wsgi, mod_python, or just cgi?

后端 未结 4 1743
轻奢々
轻奢々 2021-01-30 16:23

I\'ve been playing around with my own webserver (Apache+Ubuntu) and python. From what I\'ve seen there are 3(?) main ways of doing this:

  1. Apache configured to handl
4条回答
  •  不要未来只要你来
    2021-01-30 17:04

    mod_python is dead, so using mod_python probably isn't a good idea for new projects. Personally, I prefer to use mod_wsgi over CGI (or FastCGI). It's dead-simple to set up, and much more efficient.

提交回复
热议问题