web-dev-qa-db-ja.com

このApacheサイト構成に構文エラーまたはその他のエラーがありますか?

私はDjango GunicornサーバーをUbuntuVPSで0.0.0.0:8000で実行していますが、いくつかの問題はありますが、ローカルホスト接続を受け入れているようです。サイト対応の構成ファイル:

<VirtualHost *:80>
    ServerName pragmatometer.com
    ServerAlias www.pragmatometer.com analyticalnoticeboard.com www.analyticalnoticeboard.com logisticmvc.com www.logisticmvc.com
    ServerAdmin [email protected]

    DocumentRoot /home/jonathan/classicorthodoxbible.com
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/>
        Options ExecCGI Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/
    <Directory "/usr/lib/cgi-bin">
        AllowOverride None
        Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch
        Order allow,deny
        Allow from all
    </Directory>

    ErrorLog ${Apache_LOG_DIR}/author.cjshayward.error.log

    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn

    CustomLog ${Apache_LOG_DIR}/access.log combined

    Alias /doc/ "/usr/share/doc/"
    <Directory "/usr/share/doc/">
        Options Indexes MultiViews FollowSymLinks
        AllowOverride None
        Order deny,allow
        Deny from all
        Allow from 127.0.0.0/255.0.0.0 ::1/128
    </Directory>

    ProxyPass / http://localhost:8000/
    ProxyPassReverse / http://localhost:8000/

</VirtualHost>

http://logisticmvc.com/ に接続しようとすると、Apache(Gunicornではない)500エラーページが表示されますが、/ var/log/Apache2 /error.logに新しいログが記録されません。 。

ProxyPassとProxyPassReverseは適切ですか、それとも問題を引き起こしている可能性がありますか? .confファイルにリストされているドメインで、8000のGunicornサーバーで実行されているコンテンツを提供したいと思います。

1
[Tue Jan 14 16:38:37.054643 2014] [proxy:warn] [pid 12715] [client 98.253.179.182:58922] AH01144: No protocol handler was valid for the URL /. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.
[Tue Jan 14 16:38:38.991741 2014] [proxy:warn] [pid 12619] [client 98.253.179.182:58923] AH01144: No protocol handler was valid for the URL /favicon.ico. If you are using a DSO version of mod_proxy, make sure the proxy submodules are included in the configuration using LoadModule.

エラーメッセージの検索が表示されました https://stackoverflow.com/questions/17475587/setup-mod-proxy-on-Apache-http-server 、そして私は普通のDjango proxy_http.loadを有効にした後のデバッグ。

3