1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 01:51:23 +02:00

Allow to start tls server with HttpServer::serve_tls

This commit is contained in:
Nikolay Kim
2017-11-01 16:34:58 -07:00
parent a12e5e9cf5
commit ec3b139273
8 changed files with 152 additions and 19 deletions

14
examples/tls/Cargo.toml Normal file
View File

@ -0,0 +1,14 @@
[package]
name = "ssl-example"
version = "0.1.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
[[bin]]
name = "server"
path = "src/main.rs"
[dependencies]
env_logger = "0.4"
actix = "0.3.1"
actix-web = { path = "../../", features=["tls"] }

BIN
examples/tls/identity.pfx Normal file

Binary file not shown.

46
examples/tls/src/main.rs Normal file
View File

@ -0,0 +1,46 @@
#![allow(unused_variables)]
extern crate actix;
extern crate actix_web;
extern crate env_logger;
//use tokio_tls;
use std::fs::File;
use std::io::Read;
// use native_tls::{TlsAcceptor, TlsStream};
use actix_web::*;
/// somple handle
fn index(req: &mut HttpRequest, _payload: Payload, state: &()) -> HttpResponse {
println!("{:?}", req);
httpcodes::HTTPOk.with_body("Welcome!")
}
fn main() {
::std::env::set_var("RUST_LOG", "actix_web=info");
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, "12345").unwrap();
HttpServer::new(
Application::default("/")
// enable logger
.middleware(Logger::new(None))
// register simple handler, handle all methods
.handler("/index.html", index)
// with path parameters
.resource("/", |r| r.handler(Method::GET, |req, _, _| {
Ok(httpcodes::HTTPFound
.builder()
.header("LOCATION", "/index.html")
.body(Body::Empty)?)
})))
.serve_tls::<_, ()>("127.0.0.1:8080", pkcs12).unwrap();
println!("Started http server: 127.0.0.1:8080");
let _ = sys.run();
}