2019-06-17 21:15:33 +02:00
|
|
|
// <identity>
|
2019-06-26 20:15:03 +02:00
|
|
|
use actix_web::{
|
2022-02-26 04:56:24 +01:00
|
|
|
get, http::header::ContentEncoding, middleware, App, HttpResponse, HttpServer,
|
2019-06-26 20:15:03 +02:00
|
|
|
};
|
2019-06-17 21:15:33 +02:00
|
|
|
|
2020-09-12 17:21:54 +02:00
|
|
|
#[get("/")]
|
2019-12-28 18:59:48 +01:00
|
|
|
async fn index() -> HttpResponse {
|
2019-06-17 21:15:33 +02:00
|
|
|
HttpResponse::Ok()
|
|
|
|
// v- disable compression
|
2022-02-26 04:56:24 +01:00
|
|
|
.insert_header(ContentEncoding::Identity)
|
2019-06-17 21:15:33 +02:00
|
|
|
.body("data")
|
|
|
|
}
|
2019-06-19 06:20:50 +02:00
|
|
|
|
2020-09-12 17:21:54 +02:00
|
|
|
#[actix_web::main]
|
2019-12-28 18:59:48 +01:00
|
|
|
async fn main() -> std::io::Result<()> {
|
2019-06-26 20:15:03 +02:00
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
|
|
|
.wrap(middleware::Compress::default())
|
2020-09-12 17:21:54 +02:00
|
|
|
.service(index)
|
2019-06-26 20:15:03 +02:00
|
|
|
})
|
2022-02-26 04:56:24 +01:00
|
|
|
.bind(("127.0.0.1", 8080))?
|
2019-06-26 20:15:03 +02:00
|
|
|
.run()
|
2019-12-28 18:59:48 +01:00
|
|
|
.await
|
2019-06-19 06:20:50 +02:00
|
|
|
}
|
2019-06-26 20:15:03 +02:00
|
|
|
// </identity>
|