debug: routing to acme only from nginx

This commit is contained in:
Stepan Vladovskiy 2023-10-12 10:01:17 -03:00
parent 61b9eb2327
commit 51c250a4ae

View File

@ -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()