web-dev-qa-db-ja.com

ディレクトリ、プロキシ、場所-1つのApache構成で共存する方法は?

主に試行錯誤を繰り返して、以下のApache構成ファイルを作成しました。

これは、localhost:8002上のサーバーとWSGIを介したtracサーバーがLDAPサーバーを共有し、同じドメイン/ポート上にあるように見えるようにすることを目的としています。

ルールは個別に機能しますが、並行して機能しません。

特に、trac WSGIは、ProxyPass/ProxyPassReverse行がコメントアウトされている場合にのみ正しく機能します。そのリダイレクトがないと、localhost:8002のサーバーは明らかに発信8022ポートにマップされません。

ディレクトリ、プロキシ、ロケーションのルールの組み合わせが私の問題のルートであると思いますか、あるいはそれらの順序ですか?

WSGIDaemonProcess trac stack-size=524288 python-path=/usr/lib/python2.5/site-packages
WSGIScriptAlias /trac /home/web/foo/parts/trac/tracwsgi/cgi-bin/trac.wsgi

<VirtualHost foo.bar.com:8022>
    ServerName foo.bar.com
    ServerAlias foo.bar.com

    ProxyRequests Off
    <Proxy *>
        Order deny,allow
        Allow from all
    </Proxy>

    ProxyPreserveHost On
    ProxyPass / http://localhost:8002/VirtualHostBase/http/foo.bar.com:8022/foo/VirtualHostRoot/
    ProxyPassReverse / http://localhost:8002/VirtualHostBase/http/foo.bar.com:8022/foo/VirtualHostRoot/

    <Directory "/home/web/foo/parts/trac/tracwsgi/cgi-bin">
        WSGIApplicationGroup %{GLOBAL}
        Options +Indexes FollowSymLinks
        AllowOverride None
        Allow from all
        Order allow,deny
    </Directory>

    <Location "/trac">
        AuthBasicProvider ldap
        AuthType Basic
        AuthzLDAPAuthoritative off
        AuthName "Login"
        AuthLDAPURL "ldap://127.0.0.1:389/dc=foo-bar,dc=org?uid"
        AuthLDAPBindDN "cn=admin, dc=foo-bar, dc=org"
        AuthLDAPBindPassword secret
        require valid-user
    </Location>

</VirtualHost>
4
Jon Hadley

追加:

ProxyPass /trac !

'/'のProxyPassの前。

見る:

http://httpd.Apache.org/docs/2.2/mod/mod_proxy.html#proxypass

WSGIProcessGroupディレクティブもありません。そのTracインスタンスは、作成したデーモンモードプロセスで実行されません。見る:

http://code.google.com/p/modwsgi/wiki/IntegrationWithTrac

4