CORS headers for feeds
My feeds have the
Access-Control-Allow-Origin: *
header, do yours? 🫵ðŸ˜
I answered the above shoutout from David Bushell by adding the following statement to my nginx config:
if ( $uri ~* ^/rss\.xml$ ) { more_set_headers "Access-Control-Allow-Origin: *"; }