作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试将phoenix绑定(bind)到"0.0.0.0"
我试过 config.exs
作为:
config :app, App.Endpoint,
url: [host: "0.0.0.0"],
dev.exs
作为:
config :app, App.Endpoint,
http: [host: "0.0.0.0", port: 4000],
[info] Running App.Endpoint with Cowboy using http://localhost:4000
[warn] Transport option {:host, "0.0.0.0"} unknown or invalid.
最佳答案
您需要使用 ip
http
中的关键,其值为代表 IP 的 4 元素整数元组。在您的情况下,它看起来像:
config :app, App.Endpoint,
http: [ip: {0, 0, 0, 0}, port: 4000]
关于phoenix-framework - 如何在主机 0.0.0.0 上启动 phoenixframework?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37773987/
刚到 Elixir/Phoenix 我想使用 RethinkDB 而不是 PostgreSQL,但我只在 PostgreSQL 上找到文档/示例(这似乎是默认/官方数据库)。 Hamiltop (
我在 Controller 中尝试了以下内容: conn |> put_flash(:info, "text with twitter" |> render "index.html" 我正在显示这样的
我尝试将phoenix绑定(bind)到"0.0.0.0"我试过 config.exs作为: config :app, App.Endpoint, url: [host: "0.0.0.0"],
我是一名优秀的程序员,十分优秀!