mirror of
https://github.com/actix/actix-extras.git
synced 2024-11-28 17:52:40 +01:00
50 lines
1.4 KiB
Rust
50 lines
1.4 KiB
Rust
#![allow(unused_variables)]
|
|
extern crate actix;
|
|
extern crate actix_web;
|
|
extern crate env_logger;
|
|
|
|
use std::fs::File;
|
|
use std::io::Read;
|
|
|
|
use actix_web::*;
|
|
|
|
/// somple handle
|
|
fn index(req: HttpRequest) -> Result<HttpResponse> {
|
|
println!("{:?}", req);
|
|
Ok(httpcodes::HTTPOk
|
|
.build()
|
|
.content_type("text/plain")
|
|
.body("Welcome!")?)
|
|
}
|
|
|
|
fn main() {
|
|
if ::std::env::var("RUST_LOG").is_err() {
|
|
::std::env::set_var("RUST_LOG", "actix_web=trace");
|
|
}
|
|
let _ = env_logger::init();
|
|
let sys = actix::System::new("ws-example");
|
|
|
|
let mut file = File::open("identity.pfx").unwrap();
|
|
let mut pkcs12 = vec![];
|
|
file.read_to_end(&mut pkcs12).unwrap();
|
|
let pkcs12 = Pkcs12::from_der(&pkcs12).unwrap().parse("12345").unwrap();
|
|
|
|
HttpServer::new(
|
|
|| Application::new()
|
|
// enable logger
|
|
.middleware(middlewares::Logger::default())
|
|
// register simple handler, handle all methods
|
|
.resource("/index.html", |r| r.f(index))
|
|
// with path parameters
|
|
.resource("/", |r| r.method(Method::GET).f(|req| {
|
|
httpcodes::HTTPFound
|
|
.build()
|
|
.header("LOCATION", "/index.html")
|
|
.body(Body::Empty)
|
|
})))
|
|
.serve_ssl::<_, ()>("127.0.0.1:8443", &pkcs12).unwrap();
|
|
|
|
println!("Started http server: 127.0.0.1:8443");
|
|
let _ = sys.run();
|
|
}
|