Constellation, Spacedust, Slingshot, UFOs: atproto crates and services for microcosm

permissive cors

apparently allows browser scripts to set a custom ua

in prod nginx is currently overriding all cors stuff anyway, but

Changed files
+1 -1
constellation
src
server
+1 -1
constellation/src/server/mod.rs
···
}
}),
)
-
.layer(tower_http::cors::CorsLayer::new().allow_origin(tower_http::cors::Any))
+
.layer(tower_http::cors::CorsLayer::permissive())
.layer(middleware::from_fn(add_lables))
.layer(MetricLayer::default());