2019-06-17 21:15:33 +02:00
|
|
|
// <identity>
|
2019-06-26 20:15:03 +02:00
|
|
|
use actix_web::{
|
|
|
|
http::ContentEncoding, middleware, middleware::BodyEncoding, HttpResponse,
|
|
|
|
};
|
2019-06-17 21:15:33 +02:00
|
|
|
|
2019-06-26 07:58:47 +02:00
|
|
|
fn index() -> HttpResponse {
|
2019-06-17 21:15:33 +02:00
|
|
|
HttpResponse::Ok()
|
|
|
|
// v- disable compression
|
|
|
|
.encoding(ContentEncoding::Identity)
|
|
|
|
.body("data")
|
|
|
|
}
|
2019-06-19 06:20:50 +02:00
|
|
|
|
|
|
|
pub fn main() {
|
2019-06-26 07:58:47 +02:00
|
|
|
use actix_web::{web, App, HttpServer};
|
|
|
|
|
2019-06-26 20:15:03 +02:00
|
|
|
HttpServer::new(|| {
|
|
|
|
App::new()
|
|
|
|
.wrap(middleware::Compress::default())
|
|
|
|
.route("/", web::get().to(index))
|
|
|
|
})
|
|
|
|
.bind("127.0.0.1:8088")
|
|
|
|
.unwrap()
|
|
|
|
.run()
|
|
|
|
.unwrap();
|
2019-06-19 06:20:50 +02:00
|
|
|
}
|
2019-06-26 20:15:03 +02:00
|
|
|
// </identity>
|