2

私は Apache noob であり、http://.com/gitweb へのリクエストを https://.com/gitweb に自動的にリダイレクトしようとしています。

以下を /etc/apache2/conf.d/gitweb に設定しました

Alias /gitweb /usr/share/gitweb
<Directory /usr/share/gitweb>
  Options FollowSymLinks +ExecCGI
  AddHandler cgi-script .cgi
  Redirect gitweb https://<myserver>.com/gitweb
  SSLRequireSSL
</Directory>

しかし、私は403禁止通知を受け取り続けています

Forbidden
You don't have permission to access /gitweb on this server.
Apache/2.2.22 (Ubuntu) Server at dndo-gamma Port 80

このサーバーがホストするすべてのディレクトリをリダイレクトしたくありません。gitweb のリクエストだけです。

/etc/apache2/sites-enabled/000-default はデフォルトから変更されていません

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    <Directory />
            Options FollowSymLinks
            AllowOverride None
    </Directory>
    <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 ${APACHE_LOG_DIR}/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>

</VirtualHost>

ファイル /etc/apache2/sites-enabled/default-ssl も、デフォルトの ubuntu/apache2 インストールから変更されていません。

4

1 に答える 1

1

通常、私mod_rewriteはこれらの種類のタスクに使用します:

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteLog "/var/log/apache2/rewrite_log"

    RewriteRule ^/gitweb/(.*) https://%{SERVER_NAME}/gitweb/%1 [R]

しかし、これはプログラミングではなくサーバー構成です。serverfault.comでこの質問をすることを検討してください。

于 2013-02-11T17:30:38.050 に答える