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

メッセージ中の記載URLが実際のURLと異なる #1725

Open
masao opened this issue Aug 21, 2022 · 2 comments
Open

メッセージ中の記載URLが実際のURLと異なる #1725

masao opened this issue Aug 21, 2022 · 2 comments
Labels
Milestone

Comments

@masao
Copy link
Member

masao commented Aug 21, 2022

#1691 (comment) でメッセージを確認して気づいたのですが、インポート完了時のメッセージなどに記載されているURLが起動しているURLとは異なるものになっています。

1.4系になって、システム全体の設定と .env と両方にURLが設定されていて整合しない場合などを考えておいた方が良いと思います。

@masao masao added this to the 1.4.0 milestone Aug 21, 2022
@nabeta
Copy link
Member

nabeta commented Aug 21, 2022

@masao たしかに、現状では設定箇所がふたつありますね。現状、新規インストール時には、「システム全体の設定」のURLを.env内のURLで更新するようになっているのですが、環境変数にあわせたほうがよさそうな気がします。

@nabeta
Copy link
Member

nabeta commented Aug 21, 2022

@masao .envにENJU_LEAF_BASE_URLは存在していますか。
なお、メッセージ内のURLのホスト名は、この環境変数から取得するようになっています。
https://github.com/next-l/enju_leaf/blob/main/config/application.rb#L28-L33

    base_url = URI.parse(ENV['ENJU_LEAF_BASE_URL'] || 'http://localhost:8080')
    config.action_mailer.default_url_options = {
      host: base_url.host,
      protocol: base_url.scheme,
      port: base_url.port
    }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants