Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any plans to officially support Django with IIS?

Tags:

I say properly because everyone I have spoken to in the past said running Django on IIS was a hack. I had it working somewhat but it never did quite right and did feel like a hack. I like python but had to give it up because I could never make Django work with IIS and Django was my excuse to use Python in production web apps. But it was so messy that I could not in good conscience sell it to the group. So, I figured why fight it, just stick to asp.net, IIS, roll your own or use frameworks from MS. Just wondering if anything had changed. BTW, not knocking asp.net. I just wanted to use Python.

Thank you.

EDIT - Are there any new plans to officially support IIS yet?

like image 673
johnny Avatar asked Dec 17 '08 14:12

johnny


1 Answers

Django is WSGI-based framework so as soon as IIS get proper WSGI handling there should be no problem in running Django under this environment. Anything that connects WSGI and IIS will do.

Quick googling reveals some project on Google Code.

like image 61
zgoda Avatar answered Oct 12 '22 01:10

zgoda