使用旧的Rust 2015
0.0.2 |
|
---|---|
0.0.1 |
|
#11 in #fast-cgi
12KB
221 行
rust-fcgi
本包提供了对C/C++快速CGI库的Rust绑定。
基本用法
运行 cargo build
编译位于 examples/example.rs
下的示例代码。这将为您提供简单的“Hello World”网络服务,该服务将一些状态信息写入stdout并将错误信息写入FCGI错误流。
要使用示例程序,只需配置您的网络服务器以运行二进制文件或通过tcp连接到它,以下是为lighttpd的示例配置
fastcgi.server = (
"/rust" => ((
"host" => "127.0.0.1",
"port" => 8080,
"check-local" => "disable"
))
)
现在您可以使用以下命令启动FCGI进程
spawn-fcgi target/fcgi-example -n -p 8080
访问 http://127.0.0.1/cpp/hello 以接收欢迎问候。您还可以尝试向URL发送POST请求以测试 readall
方法,该方法应将提交的请求正文写入stdout
curl --request POST --data Test http://127.0.0.1/rust