From 51c250a4ae1d314c578720439843ceb4e872b7b7 Mon Sep 17 00:00:00 2001 From: Stepan Vladovskiy Date: Thu, 12 Oct 2023 10:01:17 -0300 Subject: [PATCH] debug: routing to acme only from nginx --- src/main.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 0e6c476..36d75ed 100644 --- a/src/main.rs +++ b/src/main.rs @@ -131,7 +131,6 @@ async fn main() -> std::io::Result<()> { .wrap(Logger::default()) .app_data(web::Data::new(state.clone())) .route("/", web::get().to(connect_handler)) - ) }) .bind("0.0.0.0:8080")? .run()