reactjs アプリとサブドメイン内の laravel サブディレクトリで Nginx の SSL に Certbot を使用できない

reactjs アプリとサブドメイン内の laravel サブディレクトリで Nginx の SSL に Certbot を使用できない

ドメインは 1 つの IP にあり、サブドメインは別の IP にあります。FE の nginx url は http://subdomain/、BE の nginx url は http://subdomain/api に設定しました。また、サブドメインの使用には SSL が必要です。サートボット、これで私はFE 用の反応アプリそしてBE 用の PHP Laravelオールインドッカー、しかし成功しませんでした。

nginx.conf

server {
    listen 8888;
    server_name subdomain;

    index index.php index.html;
    root /var/www;
    client_max_body_size 256M;

    error_log /var/log/nginx/fe/error.log;
    access_log /var/log/nginx/fe/access.log;


    ## config path for API
    location ^~ /api  {
        error_log /var/log/nginx/api/error.log;
        access_log /var/log/nginx/api/access.log;

        alias /var/www/api/public;
        if (!-e $request_filename) {
            rewrite ^ /api/index.php last;
        }
        location ~ \.php$ {
            if (!-f $request_filename) {
                return 404;
            }
            fastcgi_pass api:9000;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME $request_filename;
        }
    }

    location ~ /.well-known/acme-challenge {
        allow all;
        default_type "text/plain" ;
        alias /var/www/certbot/index.html; <-- #here only static file html with "HelloWorld"
    }

    ## Load staic file for FE
    location / {
        try_files $uri /index.html;
    }
}

そして検証を実行するとnginx の SSLによるサートボット:

certbot --nginx -d <subdomain> -m <email> 

以下のようなエラーがあります:

   Domain: <subdomain>
   Type:   unauthorized
   Detail: Invalid response from
   http://<sudomain>/.well-known/acme-challenge/88C3jgQzqOTXDqBbDX_XLZRR0Sw5RGaNUaGyCgedwVs
   [IP]: "<!DOCTYPE html>\n<html lang=\"en\">\n<head>\n
   <meta charset=\"UTF-8\">\n    <title>HelloWorld</title>\n</head>\n<body>\n\n</body>"

/.well-known/acme-challengenginxでブロックを設定するとallow all;エラーallow all; root /certbot/index.html;が発生します

   Domain: <subdomain>
   Type:   unauthorized
   Detail: Invalid response from
   http://<subdomain>/.well-known/acme-challenge/bfp9WEdPO1eb4NPTSPuQCD2jpakgn2-aIUVF62nrwLs
   [IP]: "<html>\r\n<head><title>404 Not
   Found</title></head>\r\n<body>\r\n<center><h1>404 Not
   Found</h1></center>\r\n<hr><center>nginx/1.15.12</c"

nginx を ssl 用に設定するにはどうすればよいですか?

ご支援ありがとうございます。

答え1

更新しました:

修正しました。Docker で nginx と certbot を設定し、443 ポートなしでコンテナを実行したためです。マップ 443 と 80 ポートを開くと、問題なく動作します。

関連情報