1
0
mirror of https://github.com/actix/examples synced 2025-06-28 18:00:37 +02:00

https-tls: typo - correct URIs to use https (#606)

This commit is contained in:
Alex Collins
2023-02-25 12:38:19 +00:00
committed by GitHub
parent 7dfe3074a0
commit 4c63b61245
4 changed files with 4 additions and 4 deletions

View File

@ -173,7 +173,7 @@ async fn main() -> anyhow::Result<()> {
// Storing pkey_der, cert_der and intermediate_cert somewhere
// (in order to avoid unnecessarily regeneration of TLS/SSL) is recommended
log::info!("starting HTTP server at http://localhost:443");
log::info!("starting HTTP server at https://localhost:443");
// Start HTTP server!
let srv = HttpServer::new(|| App::new().route("/", web::get().to(index)))