mirror of
https://github.com/fafhrd91/actix-web
synced 2024-11-24 00:21:08 +01:00
55 lines
1.8 KiB
Rust
55 lines
1.8 KiB
Rust
|
use futures::IntoFuture;
|
||
|
|
||
|
use actix_http::{h1, http::Method, Response};
|
||
|
use actix_server::Server;
|
||
|
use actix_web2::{middleware, App, Error, HttpRequest, Resource};
|
||
|
|
||
|
fn index(req: HttpRequest) -> &'static str {
|
||
|
println!("REQ: {:?}", req);
|
||
|
"Hello world!\r\n"
|
||
|
}
|
||
|
|
||
|
fn index_async(req: HttpRequest) -> impl IntoFuture<Item = &'static str, Error = Error> {
|
||
|
println!("REQ: {:?}", req);
|
||
|
Ok("Hello world!\r\n")
|
||
|
}
|
||
|
|
||
|
fn no_params() -> &'static str {
|
||
|
"Hello world!\r\n"
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
::std::env::set_var("RUST_LOG", "actix_server=info,actix_web2=info");
|
||
|
env_logger::init();
|
||
|
let sys = actix_rt::System::new("hello-world");
|
||
|
|
||
|
Server::build()
|
||
|
.bind("test", "127.0.0.1:8080", || {
|
||
|
h1::H1Service::new(
|
||
|
App::new()
|
||
|
.middleware(
|
||
|
middleware::DefaultHeaders::new().header("X-Version", "0.2"),
|
||
|
)
|
||
|
.middleware(middleware::Compress::default())
|
||
|
.resource("/resource1/index.html", |r| r.get(index))
|
||
|
.service(
|
||
|
"/resource2/index.html",
|
||
|
Resource::new()
|
||
|
.middleware(
|
||
|
middleware::DefaultHeaders::new()
|
||
|
.header("X-Version-R2", "0.3"),
|
||
|
)
|
||
|
.default_resource(|r| r.to(|| Response::MethodNotAllowed()))
|
||
|
.method(Method::GET, |r| r.to_async(index_async)),
|
||
|
)
|
||
|
.service("/test1.html", Resource::new().to(|| "Test\r\n"))
|
||
|
.service("/", Resource::new().to(no_params)),
|
||
|
)
|
||
|
})
|
||
|
.unwrap()
|
||
|
.workers(1)
|
||
|
.start();
|
||
|
|
||
|
let _ = sys.run();
|
||
|
}
|