【发布时间】:2021-03-12 05:32:59
【问题描述】:
我正在运行这个 hello world 示例:
https://rocket.rs/v0.4/guide/quickstart/#running-examples
$ cargo run
Finished dev [unoptimized + debuginfo] target(s) in 1.32s
Running `C:\Users\m3\repos\Rocket\target\debug\hello_world.exe`
Configured for development.
=> address: localhost
=> port: 8000
=> log: normal
=> workers: 8
=> secret key: generated
=> limits: forms = 32KiB
=> keep-alive: 5s
=> read timeout: 5s
=> write timeout: 5s
=> tls: disabled
Mounting /:
=> GET / (hello)
Rocket has launched from http://localhost:8000
代码在这里:
https://github.com/SergioBenitez/Rocket/tree/v0.4/examples/hello_world
问题
问题是它只能从http://localhost:8000 启动。它不适用于http://127.0.0.1:8000 或http://192.168.1.250:8000。
问题
如何修改代码以使服务器从127.0.0.1 或服务器的静态IP 地址(即192.168.1.250)启动?我检查了代码,但无法弄清楚如何。
没用
修改Cargo.tomlconfig并添加地址和端口:
[global]
address = "0.0.0.0"
port = 80
【问题讨论】:
-
检查rocket.rs/v0.4/guide/configuration将配置放入
Rocket.toml
标签: rust rust-rocket