When starting server in tls mode use https in the log

This commit is contained in:
Jeremy Wall 2023-01-05 11:12:10 -05:00
parent d9618aac35
commit e4d8b078e9

View File

@ -423,7 +423,7 @@ pub async fn ui_main_tls(
) {
let router = make_router(recipe_dir_path, store_path).await;
info!(
http = format!("http://{}", listen_socket),
http = format!("https://{}", listen_socket),
"Starting server"
);
let config = axum_server::tls_rustls::RustlsConfig::from_pem_file(cert_path, key_path)