On Fri, Mar 22, 2019 at 8:28 AM patel hastik <
hastikp...@gmail.com> wrote:
>
> Hello, everyone
>
> I created python Django web Application I want to configure with IIS on the window OS. I try many things and research about this I found video and document and I follow all the step mention in the document but I am getting Error "internal server Error 500.00 unknown FastCGI Occurred"
>
> my Question is I have to make any change in python and Django code to configure my python Django project with IIS?
>
> can anyone help me with is thanks in advanced
I have a django app that I was able to get running on IIS. It was a
huge pain, with many battles along the way. In my case the app had to
run on both Windows and Linux so I had to make some settings changes,
but no code changes. I would check the logs (IIS logs, django logs,
any logs your app may generate). Also I found that connecting to the
app locally (i.e. from a browser running on the same machine as IIS)
gave me more informative error messages then when I ran from a remote
client. You can also try running the django devel server and seeing if
you get more info from that. Good luck.