hangj

Results 4 comments of hangj

When I send http request to my https server, the server just close the connection, reply me nothing, while I expect an error code like 497.

@daxpedda yes, its the current behavior of `axum-server`

> > When I send http request to my https server, the server just close the connection, reply me nothing, while I expect an error code like 497. > >...

Add a note here: ```rust extern crate daemonize; fn main() { daemonize::Daemonize::new() .working_directory(".") .pid_file("pid") .start() .expect("daemonize failed"); loop { std::thread::sleep(std::time::Duration::from_secs(1)); } } ``` And `cargo run` twice ```console $ cargo...