mirror of
https://github.com/actix/actix-web.git
synced 2024-11-08 18:19:30 +00:00
29 lines
859 B
Rust
29 lines
859 B
Rust
use actix_http::{h1, Response};
|
|
use actix_server::Server;
|
|
use actix_service::NewService;
|
|
use futures::future;
|
|
use http::header::HeaderValue;
|
|
use log::info;
|
|
use std::env;
|
|
|
|
fn main() {
|
|
env::set_var("RUST_LOG", "hello_world=info");
|
|
env_logger::init();
|
|
|
|
Server::build()
|
|
.bind("hello-world", "127.0.0.1:8080", || {
|
|
h1::H1Service::build()
|
|
.client_timeout(1000)
|
|
.client_disconnect(1000)
|
|
.server_hostname("localhost")
|
|
.finish(|_req| {
|
|
info!("{:?}", _req);
|
|
let mut res = Response::Ok();
|
|
res.header("x-head", HeaderValue::from_static("dummy value!"));
|
|
future::ok::<_, ()>(res.body("Hello world!"))
|
|
})
|
|
.map(|_| ())
|
|
})
|
|
.unwrap()
|
|
.run();
|
|
}
|