geforkt von mirrored/vaultwarden
Add error message when the proxy doesn't route websockets correctly
Dieser Commit ist enthalten in:
Ursprung
434551e012
Commit
d66d4fd87f
1 geänderte Dateien mit 6 neuen und 1 gelöschten Zeilen
|
@ -6,7 +6,12 @@ use auth::Headers;
|
||||||
use db::DbConn;
|
use db::DbConn;
|
||||||
|
|
||||||
pub fn routes() -> Vec<Route> {
|
pub fn routes() -> Vec<Route> {
|
||||||
routes![negotiate]
|
routes![negotiate, websockets_err]
|
||||||
|
}
|
||||||
|
|
||||||
|
#[get("/hub")]
|
||||||
|
fn websockets_err() -> JsonResult {
|
||||||
|
err!("'/notifications/hub' should be proxied towards the websocket server, otherwise notifications will not work. Go to the README for more info.")
|
||||||
}
|
}
|
||||||
|
|
||||||
#[post("/hub/negotiate")]
|
#[post("/hub/negotiate")]
|
||||||
|
|
Laden …
In neuem Issue referenzieren