mirror of
https://github.com/scsibug/nostr-rs-relay.git
synced 2024-11-09 21:29:06 -05:00
fix(NIP-11): Add CORS header and content type for main page
This commit is contained in:
parent
2b4b17dbda
commit
0a3b15f41f
10
src/main.rs
10
src/main.rs
|
@ -1,3 +1,4 @@
|
|||
|
||||
//! Server process
|
||||
use futures::SinkExt;
|
||||
use futures::StreamExt;
|
||||
|
@ -134,14 +135,17 @@ async fn handle_web_request(
|
|||
return Ok(Response::builder()
|
||||
.status(200)
|
||||
.header("Content-Type", "application/nostr+json")
|
||||
.header("Access-Control-Allow-Origin", "*")
|
||||
.body(b)
|
||||
.unwrap());
|
||||
}
|
||||
}
|
||||
}
|
||||
Ok(Response::new(Body::from(
|
||||
"Please use a Nostr client to connect.",
|
||||
)))
|
||||
Ok(Response::builder()
|
||||
.status(200)
|
||||
.header("Content-Type", "text/plain")
|
||||
.body(Body::from("Please use a Nostr client to connect.")).unwrap()
|
||||
)
|
||||
}
|
||||
(_, _) => {
|
||||
//handle any other url
|
||||
|
|
Loading…
Reference in New Issue
Block a user