mirror of
https://github.com/actix/actix-website
synced 2024-11-24 08:43:01 +01:00
c1a8103cbc
* add arch diagrams and menu * fix colors for arch diagrams * refine architecture diagrams, ready for review * capitalize titles and add mmdc instruction * apply code review requested changes * Add links to accept, worker and dispatcher too
455 B
455 B
title | menu | weight |
---|---|---|
Http Server Initialization | docs_architecture | 10 |
Architecture overview
Below is a diagram of HttpServer initalization, which happens on the following code
#[actix_rt::main]
async fn main() -> std::io::Result<()> {
HttpServer::new(|| {
App::new()
.route("/", web::to(|| HttpResponse::Ok()))
})
.bind("127.0.0.1:8088")?
.run()
.await
}