Symbolicator as symbol server

Correct, this should possible, although using Symbolicator as a proxy in front of Sentry requires a bit of configuration:

  1. You have to create an API token as linked here. This can either be a user-based API token or an integration token.

  2. Add a Sentry source to Symbolicator’s config.yml. Please verify under which URL Sentry is reachable by Symbolicator – I’m assuming http://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>"
        }
      ]
    
  3. Enable the Proxy in config.yml:

    symstore_proxy: true
    
  4. 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.