Change port to 9030

This commit is contained in:
Klemens Schölhorn 2024-01-21 17:55:36 +01:00
parent 48a3a206a3
commit 54295ea098
1 changed files with 1 additions and 1 deletions

View File

@ -107,7 +107,7 @@ async fn main() {
cpu_task_limit: Arc::new(Semaphore::new(4)),
});
let addr = SocketAddr::from(([0, 0, 0, 0], 3000));
let addr = SocketAddr::from(([0, 0, 0, 0], 9030));
tracing::info!("listening on {}", addr);
axum::Server::bind(&addr)
.serve(app.into_make_service())