Django WSGI Apache / WAMP на Windows - доступ запрещен - PullRequest
0 голосов
/ 01 апреля 2020

При обращении к моему приложению я сталкиваюсь со странным 403:

[authz_core:error] [pid 11736:tid 1328] [client ::1:55552] AH01630: client denied by server configuration: .../mysite/mysite/wsgi_windows.py, referer: http://localhost/mescarator.

Мой конф довольно прямолинеен;

<VirtualHost *:80>
    ServerName localhost
    DocumentRoot "D:/DevRoot/py/MescaratorReconcilator/mysite"
    WSGIPassAuthorization Off
    ErrorLog "D:/DevRoot/py/MescaratorReconcilator/mysite/apache.error.log"
    CustomLog "D:/DevRoot/py/MescaratorReconcilator/mysite/apache.access.log" combined
    WSGIScriptAlias /  "D:/DevRoot/py/MescaratorReconcilator/mysite/mysite/wsgi_windows.py"
    <Directory "D:/DevRoot/py/MescaratorReconcilator/mysite/mescarator">
        <Files wsgi_windows.py>
            Require all granted
        </Files>
    </Directory>

Я, безусловно, что-то упустил, c, попытался отключить аутентификация от apache. Но без всякого успеха.

Спасибо за помощь

...