GitHubでログインできません

GitHub ログインを設定するためにガイドに従いました。

しかし、ログインに失敗しました。

ネットワークリクエスト:

何か見落としたことはありますか?

containers/app.yml に以下のようにポートマッピングを追加しました。

exposes:
  - "20080:80"   # http
  - "20443:443" # https

そして、forum.xxlang.com サイトを転送するために nginx を使用します。

server {
     server_name forum.xxbitlang.com;
    location / {
                proxy_pass http://localhost:20080;
                proxy_set_header Host $host;
                proxy_set_header X-Real-IP $remote_addr;
    }
...
}

これが根本原因でしょうか?

追加

proxy_set_header X-Forwarded-Proto https;
「いいね!」 4