Fix storyboard when proxied with an external port

Say if it's `http://host:port` internally and proxied to
`https://domain:external_port`, the storyboard URL was rendered as
`https://domain:port`.
このコミットが含まれているのは:
Ray Cheung 2021-05-29 11:42:44 +08:00
コミット ca5d5668d9
1個のファイルの変更1行の追加1行の削除

ファイルの表示

@ -298,7 +298,7 @@ def make_host_url(kemal_config)
# Add if non-standard port
if port != 80 && port != 443
port = ":#{kemal_config.port}"
port = ":#{port}"
else
port = ""
end