私は通常、インターネットで徹底的に調査するまで、質問を投稿しません。Laravel Forge を使用して CSR を作成し、証明書を追加してアクティブ化し、これらのリソースを使用して Nginx Config を編集します。
https://stackoverflow.com/questions/26192839/laravel-forge-ssl-certificate-not-working
^curl https://domain.comはデータを返します
server {
listen 80;
server_name example.com www.example.com;
return 301 https://example.com$request_uri;
}
server {
listen 443 ssl;
server_name example.com www.example.com;
root /home/forge/example.com/public;
# FORGE SSL (DO NOT REMOVE!)
ssl_certificate /etc/nginx/ssl/vgport.com/3042/server.crt;
ssl_certificate_key /etc/nginx/ssl/vgport.com/3042/server.key;
index index.html index.htm index.php;
charset utf-8;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
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/default-error.log error;
error_page 404 /index.php;
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;
}
}
コマンド ラインで「service nginx restart」を実行し、/var/log/nginx/error.log に移動すると、次のエラーが表示されます。
'conflicting server name "" on 0.0.0.0:80, ignored'
'conflicting server name "www.domain.com" on 0.0.0.0:80, ignored'
domain.com にアクセスすると、「この Web ページにはリダイレクト ループがあります」というメッセージが表示されてhttps://domain.comにリダイレクトされます。明らかに、Nginx リダイレクトは何らかの形で機能していませんが、すべての手順に従いました。
この問題をトラブルシューティングするために投稿する必要がある追加のエラー ログと情報を教えてください。事前に感謝します。