Discourse の前に nginx を置いた際のアップロードエラー

my app config

templates:
  #  - "templates/postgres.template.yml"
  - "templates/redis.template.yml"
  - "templates/web.template.yml"
  - "templates/web.ratelimited.template.yml"
  - "templates/web.socketed.template.yml"
    #- "templates/web.china.template.yml"
## Lets Encrypt (https) を追加したい場合は、以下の 2 行のコメントを外してください
  #- "templates/web.ssl.template.yml"
  #- "templates/web.letsencrypt.ssl.template.yml"

## このコンテナが公開する TCP/IP ポートはどれですか?
## Discourse を Apache や nginx などの別の Web サーバーとポートを共有したい場合は、
## https://meta.discourse.org/t/17247 を参照してください
expose:
    #- "2045:80"   # http
    #- "2045:443" # https

nginx config

location / {
    proxy_pass http://unix:/var/discourse/shared/standalone/nginx.http.sock:;
    proxy_set_header Host $http_host;
    proxy_http_version 1.1;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto https;
    proxy_set_header X-Real-IP $remote_addr;
}

この問題をどのように解決すればよいですか?

「いいね!」 1

Discourse サイト設定で:

force_https を TRUE に設定してください

「いいね!」 2

これはどのようにインストールされましたか?

外部の Postgres を使用しているようです。

どうもありがとうございます。
すべて正常です。