2

このような他のトピックを見てきました: Nginx の構成により、無限のリダイレクト ループが発生しますが、私が試したすべての構成は変更されていません。

問題: Laravel 4 アプリケーションですべてのルートを強制したいhttpsのですが、常にリダイレクト ループが発生します。

nginx 構成は、Laravel Homestead 環境内にあります。構成は次のとおりです。

server {
    listen 80;
    server_name dev.subdomain.mysite.com;
    root /home/vagrant/sites/work/dev.subdomain.mysite.com/public;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
        proxy_set_header X-Forwarded-Proto https;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-Url-Scheme $scheme;
        proxy_redirect   off;
        proxy_max_temp_file_size 0;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/dev.subdomain.mysite.com-error.log error;

    error_page 404 /index.php;

    sendfile off;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }
}

server {
    listen 443;
    server_name dev.subdomain.mysite.com;
    root /home/vagrant/sites/work/dev.subdomain.mysite.com/public;

    index index.html index.htm index.php;

    charset utf-8;

    location / {
        try_files  / /index.php?;
        proxy_set_header X-Forwarded-Proto https;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-Url-Scheme $scheme;
        proxy_redirect   off;
        proxy_max_temp_file_size 0;
    }

    location = /favicon.ico { access_log off; log_not_found off; }
    location = /robots.txt  { access_log off; log_not_found off; }

    access_log off;
    error_log  /var/log/nginx/dev.subdomain.mysite.com-error.log error;

    error_page 404 /index.php;

    sendfile off;

    location ~ \.php$ {
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        fastcgi_index index.php;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }


    ssl on;
    ssl_certificate /etc/nginx/ssl/server.crt;
    ssl_certificate_key /etc/nginx/ssl/server.key;
}

アプリケーションですべてのルートを無効にしました.htaccess。これは Laravel が提供するデフォルトです。他に何を試すべきかわかりません。

4

1 に答える 1

1

まず、Laravel Homestead は vagrant ボックスの 443 のエイリアスとして 44300 を使用します。

http から https へのリダイレクトも、次の方法で簡単に実行できます。

server {
    listen 80;
    server_name mysite.com;
    return 301 https://example.com$request_uri;
}

server {
    listen 443;
    server_name example.com;
    root /home/vagrant/sites/work/example.com/public;
    [...] // All other Laravel-related stuff
}

次に、Homestead で開発サイトを使用しているようです。- hostfile とhomestead.yamlそれに応じて設定されていることを再確認してください。

また、SSL 証明書と nginx ファイルに変更を加える場合、最も安全な方法は常に、vagrant reloadすべての編集内容がリロードされるようにすることです。

于 2015-02-26T18:20:16.173 に答える