Change x-authlib-injector-api-location value

This commit is contained in:
0xf8 2023-06-21 16:38:06 -04:00
parent 5f2905faab
commit a2a90519e1
Signed by: 0xf8
GPG Key ID: 446580D758689584
1 changed files with 2 additions and 2 deletions

View File

@ -46,7 +46,7 @@ pub async fn start(db: &Database) -> anyhow::Result<()> {
// Index
app.at("/").get(|req: Request<Database>| async move {
let res = Response::builder(200)
.header("x-authlib-injector-api-location", format!("{}/authlib/", req.state().config.external_base_url))
.header("x-authlib-injector-api-location", format!("/authlib/"))
.build();
Ok(res)
@ -59,7 +59,7 @@ pub async fn start(db: &Database) -> anyhow::Result<()> {
app.at("/authlib/").nest(authlib::nest(db.to_owned()));
app.at("/").nest(aliases::nest(db.to_owned()));
// Listen
app.listen(format!("{}:{}", &db.config.address, &db.config.port)).await?;