fix: ip for docker container

This commit is contained in:
Moritz Böhme 2025-10-03 11:57:10 +02:00
parent 8b41d16cf0
commit a128091575
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9

View file

@ -87,5 +87,5 @@ async fn main() {
}
})
.map(|reply| warp::reply::with_header(reply, "Content-Type", "application/rss+xml"));
warp::serve(path).run(([127, 0, 0, 1], 3030)).await;
warp::serve(path).run(([0, 0, 0, 0], 3030)).await;
}