mirror of
https://github.com/actix/actix-website
synced 2024-11-24 08:43:01 +01:00
27 lines
588 B
Rust
27 lines
588 B
Rust
// <identity>
|
|
use actix_web::{
|
|
http::ContentEncoding, middleware, dev::BodyEncoding, HttpResponse,
|
|
};
|
|
|
|
async fn index() -> HttpResponse {
|
|
HttpResponse::Ok()
|
|
// v- disable compression
|
|
.encoding(ContentEncoding::Identity)
|
|
.body("data")
|
|
}
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
use actix_web::{web, App, HttpServer};
|
|
|
|
HttpServer::new(|| {
|
|
App::new()
|
|
.wrap(middleware::Compress::default())
|
|
.route("/", web::get().to(index))
|
|
})
|
|
.bind("127.0.0.1:8088")?
|
|
.run()
|
|
.await
|
|
}
|
|
// </identity>
|