我正在运行这个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.toml
配置并添加地址和端口:
[global]
address = "0.0.0.0"
port = 80
1条答案
按热度按时间3pvhb19x1#
快速浏览一下documentation,请注意一个名为rocket.toml的文件
尝试将配置放在名为
Rocket.toml
的文件中或IPv6(它也应该接受IPv4)