diff --git a/.dockerignore b/.dockerignore index 46aa852..d9a5ec7 100644 --- a/.dockerignore +++ b/.dockerignore @@ -1,4 +1,5 @@ ### direnv ### +.envrc .direnv ### Rust ### @@ -24,3 +25,6 @@ target/ Dockerfile .dockerignore + +flake.nix +flake.lock diff --git a/src/main.rs b/src/main.rs index df1744e..8069874 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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; }