Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

デモサーバのhttpsの設定に誤りがある #1734

Closed
nabeta opened this issue Oct 22, 2022 · 1 comment
Closed

デモサーバのhttpsの設定に誤りがある #1734

nabeta opened this issue Oct 22, 2022 · 1 comment

Comments

@nabeta
Copy link
Member

nabeta commented Oct 22, 2022

  • 「書き出し」のリンクがすべてhttpになっている
  • ログインができない
@nabeta
Copy link
Member Author

nabeta commented Oct 22, 2022

nginxのリバースプロキシの設定で、プロトコルの指定が抜けていた。以下を追加してnginxを再起動し、ログインできることを確認した。

  proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
  proxy_set_header Host $http_host;
  proxy_set_header X-Real-IP $remote_addr;
  proxy_redirect off;

  # 以下の設定を追加
  proxy_set_header X-Forwarded-Proto $scheme;

@nabeta nabeta closed this as completed Oct 22, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant