2016-10-12 18 views
0

私はここでレンガの壁に頭を叩いています。私はwsgiアプリケーションでセットアップしようとしているxampp経由でApache 2.4サーバーを持っています。私はhttps://modwsgi.readthedocs.io/en/develop/user-guides/quick-configuration-guide.htmlの命令に従い、ウェブをたくさん検索しましたが、何も動作しているようだしないと私はいつもこのエラー「アクセス禁止!」 apache + wsgi + xampp

Access forbidden! 

    You don't have permission to access the requested directory. There is either no index document or the directory is read-protected. 

    If you think this is a server error, please contact the webmaster. 

Error 403 

    10.226.65.62 
    Apache/2.4.23 (Win32) OpenSSL/1.0.2j mod_wsgi/4.4.12 Python/2.7.12 PHP/5.6.24 
私は

の様々な組み合わせ」をみんなにウィンドウのフォルダのアクセス許可を設定して試してみました

を取得しています

<Directory "C:/wsgi-scripts"> 
    AllowOverride none 
    Require all denied 
</Directory> 

しかし、何も動作していないようです。誰でもこれについてのアイデアはありますか?私のhttpd.confがここhttp://pastebin.com/uLtdXqrv

おかげ

答えて

1

を見つけることができますあなたはアクセスを禁止するようにApacheを語りました。あなたは持っている:

<Directory "C:/wsgi-scripts"> 
    AllowOverride none 
    Require all denied 
</Directory> 

それは次のようになります。

<Directory "C:/wsgi-scripts"> 
    AllowOverride none 
    Require all granted 
</Directory> 

deniedgrantedの違いを理解するためにApacheのマニュアルを見てください。

+0

Thanks Grahamは、Iは... any thoughtsをthatをchangedおよびbehaviorにおけるno changeでapacheをrestarted? – pwatt01

+0

'' Include conf/extra/httpd-vhosts.conf''行をコメントアウトしてみてください。そのファイルの '' VirtualHost''がそれを上書きする可能性があります。デフォルトの '' VirtualHost''の中にmod_wsgiの設定を追加してください。 –

+0

もう一度@grahamに感謝します。私はその行をコメントしましたが、依然として同じメッセージです。 – pwatt01

関連する問題