back_end_docker #9

Merged
lucien merged 23 commits from back_end_docker into back_end 2024-12-06 03:36:58 +00:00
Showing only changes of commit ee692fec27 - Show all commits

View file

@ -74,7 +74,7 @@ async fn main() -> Result<(), std::io::Error> {
.service(api) .service(api)
.service(Files::new("/", "public").index_file("index.html")) .service(Files::new("/", "public").index_file("index.html"))
}) })
.bind(("0.0.0.0", 8080))? .bind(("0.0.0.0", 2486))?
.run() .run()
.await .await
} }