1

この投稿は、私が探しているものに非常に近いです。しかし、私が探しているのは

letsencrypt.example.com   should always be http
          *.example.com   should always be https

この投稿のソリューションを使用して、すべての http を https に書き換えることができます。

server {
  listen 80;
  server_name test.example.com;
  rewrite     ^   https://$http_host$request_uri? permanent;
}

そして、それ以降は

server {
  listen 443 ssl;
  ...

質問

letsencrypt.example.comしかし、それが http ポート 80 のままであることを確認するにはどうすればよいでしょうか?

4

1 に答える 1