mirror of
https://github.com/actix/examples
synced 2025-06-26 17:17:42 +02:00
https-tls: typo - correct URIs to use https (#606)
This commit is contained in:
@ -103,7 +103,7 @@ async fn main() -> std::io::Result<()> {
|
||||
.collect();
|
||||
let config = config.with_single_cert(cert_chain, keys.remove(0)).unwrap();
|
||||
|
||||
log::info!("starting HTTP server at http://localhost:8080 and http://localhost:8443");
|
||||
log::info!("starting HTTP server at http://localhost:8080 and https://localhost:8443");
|
||||
|
||||
HttpServer::new(|| App::new().default_service(web::to(route_whoami)))
|
||||
.on_connect(get_client_cert)
|
||||
|
Reference in New Issue
Block a user