1
0
mirror of https://github.com/actix/actix-website synced 2025-03-03 07:37:33 +01:00

20 lines
674 B
Rust
Raw Normal View History

2019-06-13 17:10:51 -04:00
// <keep-alive>
use actix_web::{web, App, HttpResponse, HttpServer};
2020-09-12 16:21:54 +01:00
#[actix_web::main]
2019-12-29 03:32:56 +09:00
async fn main() -> std::io::Result<()> {
2022-02-26 03:56:24 +00:00
let one = HttpServer::new(|| App::new().route("/", web::get().to(HttpResponse::Ok)))
.keep_alive(75); // <- Set keep-alive to 75 seconds
2019-06-13 17:10:51 -04:00
// let _two = HttpServer::new(|| {
// App::new().route("/", web::get().to(|| HttpResponse::Ok()))
// })
// .keep_alive(); // <- Use `SO_KEEPALIVE` socket option.
2019-06-13 17:10:51 -04:00
2022-02-26 03:56:24 +00:00
let _three = HttpServer::new(|| App::new().route("/", web::get().to(HttpResponse::Ok)))
.keep_alive(None); // <- Disable keep-alive
2022-02-26 03:56:24 +00:00
one.bind(("127.0.0.1", 8080))?.run().await
2019-06-13 17:10:51 -04:00
}
// </keep-alive>