0

私はUbuntuでapache2サーバーを実行していて、システム管理者のスキルを向上させるためにいじっています。サイト全体でHTTPSを使用してWebサーバーをセットアップしようとしています。現在、https://mysite.comにアクセスすると、問題なく動作します。サイトへのすべての接続をHTTPSに強制するために、いくつかの異なるリダイレクトルールを試しましたが、うまくいきません。誰かがここで私の間違いを指摘できますか?

httpd.conf:

NameVirtualHost *:443

<VirtualHost *:443>
        ServerName mysite.com
        ServerAdmin webmaster@localhost
        DocumentRoot /var/www/
        SSLEngine on
        SSLOptions +FakeBasicAuth -StrictRequire +ExportCertData
        SSLCertificateKeyFile /etc/ssl/crt/myserver.key
        SSLCertificateFile /etc/ssl/crt/mysite_com.crt
        SSLCertificateChainFile /etc/ssl/crt/mysite.ca-bundle
        <Directory />
                Options FollowSymLinks
                AllowOverride None
        </Directory>
        <Directory /var/www/>
                Options Indexes FollowSymLinks MultiViews
                AllowOverride AuthConfig Options FileInfo Limit
                Order allow,deny
                allow from all
        </Directory>
</VirtualHost>

<IfModule !mod_rewrite.c>
    LoadModule rewrite_module modules/mod_rewrite.so
</IfModule>


RewriteEngine On
RewriteCond %{HTTPS} !=on
RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R,L]

ports.conf:

NameVirtualHost *:80
Listen 80

<IfModule mod_ssl.c>
    # If you add NameVirtualHost *:443 here, you will also have to change
    # the VirtualHost statement in /etc/apache2/sites-available/default-ssl
    # to <VirtualHost *:443>
    # Server Name Indication for SSL named virtual hosts is currently not
    # supported by MSIE on Windows XP.
    Listen 443
</IfModule>

<IfModule mod_gnutls.c>
    Listen 443
</IfModule>

どんな助けでも大歓迎です!

4

1 に答える 1

1

最後にそれを理解しました...機能していなかったのは私の書き換えルールではなく、使用していたプロキシ(cloudflare)との競合でした。同様の状況にある場合は、cloudflare ダッシュボード内で「ページ ルール」を作成する必要があります。そうしないと、Apache ルールが無視されます。

于 2012-06-02T05:45:26.347 に答える