Compare commits

..

No commits in common. "c242ca8cc670f03cf3a80a6bcdcc144b91f15a8e" and "8b41d16cf08ca7afedf5ec86bbdd8206d2299df9" have entirely different histories.

2 changed files with 1 additions and 5 deletions

View file

@ -1,5 +1,4 @@
### direnv ###
.envrc
.direnv
### Rust ###
@ -25,6 +24,3 @@ target/
Dockerfile
.dockerignore
flake.nix
flake.lock

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(([0, 0, 0, 0], 3030)).await;
warp::serve(path).run(([127, 0, 0, 1], 3030)).await;
}