■80ポートから443ポートへのリターンパターン
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
■中間証明書の扱い
ssl_certificate xxxxx.crt # 証明書+中間証明書+クロスルート証明書
単純にcrtファイルに中間証明書の内容を追記vimすればOK
■80ポートから443ポートへのリターンパターン
server {
listen 80;
server_name example.com;
return 301 https://$host$request_uri;
}
■中間証明書の扱い
ssl_certificate xxxxx.crt # 証明書+中間証明書+クロスルート証明書
単純にcrtファイルに中間証明書の内容を追記vimすればOK