gpt4 book ai didi

elixir - 如何通过telnet在本地连接到 Phoenix 框架应用程序?

转载 作者:行者123 更新时间:2023-12-05 00:10:31 24 4
gpt4 key购买 nike

我想使用 telnet 来测试我的 phoenix 应用程序,但它显示 Connection closed by foreign host.很快,telnet 退出。

$ telnet 127.0.0.1 4000
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
Connection closed by foreign host.

Phoenix 应用程序是一个非常简单的应用程序,无需任何额外配置。如何使用 telnet 连接到它?

最佳答案

Phoenix 用途 牛仔作为底层网络服务器。它有不同的超时选项,但我们需要的是 request_timeout .

默认为 5_000 (以毫秒为单位)并且可以在配置中进行更改,如下所示:

config :my_app, MyApp.Endpoint,
http: [
port: ...,
...
protocol_options: [
request_timeout: 60000 # minute here - for example
]
]

现在,您有时间输入您的:
GET /

telnet CLI 内部

关于elixir - 如何通过telnet在本地连接到 Phoenix 框架应用程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57750372/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com