use actix_web::{guard, web, App, HttpResponse, HttpServer}; // #[actix_web::main] async fn main() -> std::io::Result<()> { HttpServer::new(|| { App::new() .service( web::scope("/") .guard(guard::Header("Host", "www.rust-lang.org")) .route("", web::to(|| async { HttpResponse::Ok().body("www") })), ) .service( web::scope("/") .guard(guard::Header("Host", "users.rust-lang.org")) .route("", web::to(|| async { HttpResponse::Ok().body("user") })), ) .route("/", web::to(HttpResponse::Ok)) }) .bind(("127.0.0.1", 8080))? .run() .await } //