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

Configure Feed

Select the types of activity you want to include in your feed.

permissive cors

apparently allows browser scripts to set a custom ua

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

+1 -1
+1 -1
constellation/src/server/mod.rs
··· 95 95 } 96 96 }), 97 97 ) 98 - .layer(tower_http::cors::CorsLayer::new().allow_origin(tower_http::cors::Any)) 98 + .layer(tower_http::cors::CorsLayer::permissive()) 99 99 .layer(middleware::from_fn(add_lables)) 100 100 .layer(MetricLayer::default()); 101 101