Correct, this should possible, although using Symbolicator as a proxy in front of Sentry requires a bit of configuration:
-
You have to create an API token as linked here. This can either be a user-based API token or an integration token.
-
Add a Sentry source to Symbolicator’s
config.yml
. Please verify under which URL Sentry is reachable by Symbolicator – I’m assuminghttp://web/
. Replace the organization and project slugs in the URL:sources: [ { "type": "sentry", "id": "sentry:internal", "url": "http://web/api/0/<org>/<project>/files/dsyms/", "token": "<API TOKEN HERE>" } ]
-
Enable the Proxy in
config.yml
:symstore_proxy: true
-
Symbolicator should now serve your uploaded files under
/symbols/
compatible with MS Symbol Server.
Disclaimer: I did not try this configuration myself yet. Please let me know if it’s working for you, and If I have some more time I’ll try to verify myself.