Reputation: 103
My django app running on conda environment. I need to deploy the app on IIS server.
To do so I install wfastcgi and configure it.
add Handler mapping I use below path on executable
C:\Users\sabbir\Anaconda3\envs\sabbir\python.exe|C:\Users\sabbir\Anaconda3\envs\sabbir\Lib\site-packages\wfastcgi.py
also uncheck Request Restrictions area.
finally watch the tutorial and step by step configure the django app to iis.
now getting below error
try to provide all access to IIS_IUSRS to respective folders. Please help me.
Upvotes: 1
Views: 1392
Reputation: 11
Try to provide all access to IIS_IUSRS
to your python folder.
I had the same error and it worked for me.
Upvotes: 1
Reputation: 5205
You can try the solution below:
Grant full-access to IUSR to:
In IIS go to -> Authentication -> Select Anonymous Authentication (should be Enabled) -> Edit... -> Choose 'Specific User' set IUSR
Select root IIS -> Authentication -> Select Anonymous Authentication (should be Enabled) -> Edit... -> Choose 'Specific User' set IUSR
Upvotes: -1