fix(security): loose CSP for replays on self-hosted (#60534)
Replays could use arbitrary img, media, and css sources, so we need to
allow all.
* Currently, sentry.io has the same behavior anyway.
* `'self'` and `https://secure.gravatar.com` are being merged to `*` for
short.
* `blob:` and `data:` has to be separate because:
> Note that '*' matches only URLs with network schemes ('http', 'https',
'ws', 'wss'), or URLs whose scheme matches `self`'s scheme. The scheme
'blob:' must be added explicitly.