0

このチュートリアルを読んで、laravel サイトに SSL を設定しました。私はすべてを読んでおらず (おっと)、「デフォルト」サイトを削除していませんでした。デフォルトのサイトから CSR を生成しました (ただし、ドメインは example.com を使用)。これで証明書があり、laravel forge を介してインストールしましたが、機能しません。

  • https://example.comに接続できない(ブラウザ / curl)
  • http://example.comは https にリダイレクトされません
  • 何も入っていない/var/log/nginx/default-error.log
  • nginxを再起動しました

ここに私の/etc/nginx/sites-available/defaultファイルの内容があります:

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

server {
    listen 443 ssl;
    #server_name default;
    server_name example.com www.example.com;
    root /home/forge/default/public;

    # FORGE SSL (DO NOT REMOVE!)
    ssl_certificate /etc/nginx/ssl/default/XXXXX/server.crt;
    ssl_certificate_key /etc/nginx/ssl/default/XXXXX/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;
    }
}

それを機能させるにはどうすればよいですか?

4

1 に答える 1