1
0
mirror of https://github.com/actix/actix-website synced 2025-02-08 22:36:07 +01:00
actix-website/examples/middleware/src/default_headers.rs

25 lines
698 B
Rust
Raw Normal View History

2019-06-17 16:57:57 -04:00
// <default-headers>
2019-06-26 02:59:20 -04:00
use actix_web::{http, middleware, HttpResponse};
2019-06-17 16:57:57 -04:00
2020-09-12 16:21:54 +01:00
#[actix_web::main]
2019-12-29 02:03:17 +09:00
async fn main() -> std::io::Result<()> {
2019-06-26 02:59:20 -04:00
use actix_web::{web, App, HttpServer};
HttpServer::new(|| {
App::new()
.wrap(middleware::DefaultHeaders::new().header("X-Version", "0.2"))
.service(
web::resource("/test")
.route(web::get().to(|| HttpResponse::Ok()))
.route(
web::method(http::Method::HEAD)
.to(|| HttpResponse::MethodNotAllowed()),
),
)
})
2020-09-12 16:21:54 +01:00
.bind("127.0.0.1:8080")?
2019-06-26 02:59:20 -04:00
.run()
2019-12-29 02:03:17 +09:00
.await
2019-06-17 16:57:57 -04:00
}
// </default-headers>