use ntex::web::{self, middleware, App, HttpRequest, HttpResponse, HttpServer}; #[web::get("/resource1/{name}/index.html")] async fn index(req: HttpRequest, name: web::types::Path) -> String { println!("REQ: {:?}", req); format!("Hello: {}!\r\n", name) } async fn index_async(req: HttpRequest) -> Result<&'static str, std::io::Error> { println!("REQ: {:?}", req); Ok("Hello world!\r\n") } #[web::get("/")] async fn no_params() -> &'static str { "Hello world!\r\n" } #[cfg(unix)] #[ntex::main] async fn main() -> std::io::Result<()> { std::env::set_var("RUST_LOG", "ntex=info"); env_logger::init(); HttpServer::new(|| { App::new() .wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2")) .wrap(middleware::Logger::default()) .service((index, no_params)) .service( web::resource("/resource2/index.html") .wrap(middleware::DefaultHeaders::new().header("X-Version-R2", "0.3")) .default_service( web::route().to(|| async { HttpResponse::MethodNotAllowed() }), ) .route(web::get().to(index_async)), ) .service(web::resource("/test1.html").to(|| async { "Test\r\n" })) }) .bind_uds("/tmp/uds-test")? .workers(1) .run() .await } #[cfg(not(unix))] fn main() {}