rust Webserver仅从http://localhost:8000启动

ffscu2ro  于 2023-06-23  发布在  其他
关注(0)|答案(1)|浏览(134)

我正在运行这个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:8000http://192.168.1.250:8000

提问

我如何修改代码使服务器从127.0.0.1或服务器的静态IP地址启动,即192.168.1.250?我检查了代码,但无法找出原因。

不管用

修改Cargo.toml配置并添加地址和端口:

[global]
address = "0.0.0.0"
port = 80
3pvhb19x

3pvhb19x1#

快速浏览一下documentation,请注意一个名为rocket.toml的文件
尝试将配置放在名为Rocket.toml的文件中

[global]
address = "0.0.0.0"
port = 80

或IPv6(它也应该接受IPv4)

[global]
address = "::"
port = 80

相关问题