1
0
mirror of https://github.com/actix/examples synced 2024-11-28 08:22:39 +01:00
examples/cors/backend/src/main.rs

28 lines
834 B
Rust
Raw Normal View History

2019-06-17 08:48:03 +02:00
use actix_cors::Cors;
2020-10-20 00:36:53 +02:00
use actix_web::{http::header, middleware::Logger, App, HttpServer};
mod user;
2020-09-12 17:49:45 +02:00
#[actix_web::main]
2019-12-16 08:09:54 +01:00
async fn main() -> std::io::Result<()> {
2022-03-15 18:32:27 +01:00
env_logger::init_from_env(env_logger::Env::default().default_filter_or("info"));
2019-03-29 21:43:03 +01:00
HttpServer::new(move || {
2018-05-08 20:08:43 +02:00
App::new()
2019-03-29 21:43:03 +01:00
.wrap(
2020-10-20 00:36:53 +02:00
Cors::default()
2019-03-30 02:43:07 +01:00
.allowed_origin("http://localhost:8080")
2018-05-08 20:08:43 +02:00
.allowed_methods(vec!["GET", "POST"])
.allowed_headers(vec![header::AUTHORIZATION, header::ACCEPT])
.allowed_header(header::CONTENT_TYPE)
2020-10-20 00:36:53 +02:00
.supports_credentials()
.max_age(3600),
2019-03-29 21:43:03 +01:00
)
.wrap(Logger::default())
2020-10-20 00:36:53 +02:00
.service(user::info)
2019-03-10 03:03:09 +01:00
})
2022-03-15 18:32:27 +01:00
.bind(("127.0.0.1", 8080))?
2019-12-25 17:48:33 +01:00
.run()
2019-12-16 08:09:54 +01:00
.await
}