mirror of
https://github.com/actix/actix-web.git
synced 2024-11-03 15:39:50 +00:00
cb19ebfe0c
* add rustls support for actix-http and awc * fix features conflict * remove unnecessary duplication * test server with rust-tls * fix * test rustls * awc rustls test * format * tests * fix dependencies * fixes and add changes * remove test-server and Cargo.toml dev-dependencies changes * cargo fmt
53 lines
1.5 KiB
Rust
53 lines
1.5 KiB
Rust
use futures::IntoFuture;
|
|
|
|
use actix_web::{
|
|
get, middleware, web, App, Error, HttpRequest, HttpResponse, HttpServer,
|
|
};
|
|
|
|
#[get("/resource1/{name}/index.html")]
|
|
fn index(req: HttpRequest, name: web::Path<String>) -> String {
|
|
println!("REQ: {:?}", req);
|
|
format!("Hello: {}!\r\n", name)
|
|
}
|
|
|
|
fn index_async(req: HttpRequest) -> impl IntoFuture<Item = &'static str, Error = Error> {
|
|
println!("REQ: {:?}", req);
|
|
Ok("Hello world!\r\n")
|
|
}
|
|
|
|
#[get("/")]
|
|
fn no_params() -> &'static str {
|
|
"Hello world!\r\n"
|
|
}
|
|
|
|
#[cfg(feature = "uds")]
|
|
fn main() -> std::io::Result<()> {
|
|
std::env::set_var("RUST_LOG", "actix_server=info,actix_web=info");
|
|
env_logger::init();
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
|
|
.wrap(middleware::Compress::default())
|
|
.wrap(middleware::Logger::default())
|
|
.service(index)
|
|
.service(no_params)
|
|
.service(
|
|
web::resource("/resource2/index.html")
|
|
.wrap(
|
|
middleware::DefaultHeaders::new().header("X-Version-R2", "0.3"),
|
|
)
|
|
.default_service(
|
|
web::route().to(|| HttpResponse::MethodNotAllowed()),
|
|
)
|
|
.route(web::get().to_async(index_async)),
|
|
)
|
|
.service(web::resource("/test1.html").to(|| "Test\r\n"))
|
|
})
|
|
.bind_uds("/Users/fafhrd91/uds-test")?
|
|
.workers(1)
|
|
.run()
|
|
}
|
|
|
|
#[cfg(not(feature = "uds"))]
|
|
fn main() {}
|