9

Web サーバーでいくつかの Web アプリケーションを実行しています。

  • 経由でアクセス可能な SVN リポジトリ ブラウザhttps://beta.mydomain.tld/svn/repos
  • 経由でアクセス可能な Trac インスタンスhttps://beta.mydomain.tld/trac
  • http://beta.mydomain.tld/ポート 8080 でローカル Apache Tomcat のプロキシを使用して、経由でアクセスできる自分の Java Web アプリケーション

最初の 2 つは SSL 経由で利用できますが、3 つ目は (まだ) 利用できないことに注意してください。ここで、Web アプリを https 経由で利用できるようにする必要がありますが、現在の場所で Trac と SVN ブラウザーに引き続きアクセスできるようにしたいと考えています。

svnつまり、Tomcat で開始されていない、またはTomcat に開始されていないすべてのリクエストをプロキシするように apache2 を構成しようとしていますtrac

既存の SSL Web アプリの場合、次の構成があります。

    <Location /svn/repos>
        DAV svn
        SVNParentPath /home/myuser/svn
        SVNListParentPath on
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /home/myuser/.htpasswd
        Require valid-user
    </Location>

    <Location /trac>
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir /home/myuser/trac
        PythonOption TracUriRoot /trac
        AuthType Basic
        AuthName "Trac"
        AuthUserFile /home/myuser/.htpasswd
        Require valid-user
    </Location>

次の場所を追加しようとしましたが、何の役にも立ちませんでした...

    <Location />
        ProxyPass           http://localhost:8080
        ProxyPassReverse    http://localhost:8080/
    </Location>

詳細については、SSL部分に関する完全なapache2構成を次に示します(失敗した試行は含まれていません-デフォルトのtrac構成だと思います):

<VirtualHost *:443>
    ServerAdmin webmaster@localhost
    ServerName beta.mydomain.tld:443

    DocumentRoot /var/www/
    <Directory /var/www/>
            Options 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 /var/log/apache2/error.log

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

    CustomLog /var/log/apache2/ssl_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>

    SSLEngine on

    SSLCertificateFile    /etc/ssl/certs/ssl.crt
    SSLCertificateKeyFile /etc/ssl/private/ssl.key

    BrowserMatch ".*MSIE.*" \
            nokeepalive ssl-unclean-shutdown \
            downgrade-1.0 force-response-1.0

    <Location /svn/repos>
        DAV svn
        SVNParentPath /home/myuser/svn
        SVNListParentPath on
        AuthType Basic
        AuthName "Subversion repository"
        AuthUserFile /home/myuser/.htpasswd
        Require valid-user
    </Location>

    <Location /trac>
        SetHandler mod_python
        PythonHandler trac.web.modpython_frontend
        PythonOption TracEnvParentDir /home/myuser/trac
        PythonOption TracUriRoot /trac
        AuthType Basic
        AuthName "Trac"
        AuthUserFile /home/myuser/.htpasswd
        Require valid-user
    </Location>

4

2 に答える 2

16

ProxyPassを入れるだけ!それらの 2 つの Location ブロックに。これにより、関係する場所のプロキシが停止します。

于 2012-04-29T02:52:12.573 に答える