WIP: Create apub_inbox crate #8

Draft
steffo wants to merge 40 commits from feature/apub-inbox into main
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 8ef530658f - Show all commits

View file

@ -1,3 +1,3 @@
micronfig::config!(
ACRATE_WEBFINGER_BIND_ADDRESS: String,
ACRATE_RDSERVER_BIND_ADDRESS: String,
);

View file

@ -26,7 +26,7 @@ async fn main() -> anyhow::Result<std::convert::Infallible> {
log::trace!("Axum router created successfully!");
log::trace!("Creating Tokio listener...");
let bind_address = config::ACRATE_WEBFINGER_BIND_ADDRESS();
let bind_address = config::ACRATE_RDSERVER_BIND_ADDRESS();
let listener = tokio::net::TcpListener::bind(bind_address)
.await
.context("failed to bind listener to address")?;