IP Ranges
Note
The contents of this page apply only to Sentry's SaaS product. It does not apply to Self-hosted or Single Tenant.
Sentry is served from a single IP address for all web traffic and all event accepting. The IP address is:
35.188.42.15/32In some circumstances the Hosted Sentry infrastructure might send HTTP requests your way. Primarily this is relevant to JavaScript Source Maps, but also affects things like webhooks and other integrations.
Sentry uses the following IP addresses to make outbound requests:
35.184.238.160/32
104.155.159.182/32
104.155.149.19/32
130.211.230.102/32Allowing Access via Nginx
To allow access to source maps with Nginx for instance, you can use this location example. This example assumes your source maps live in /static/dist:
location ~ ^/static/dist/(.+)\.map$ {
alias /your/path/site/static/dist/$1.map;
allow 35.184.238.160/32;
allow 104.155.159.182/32;
allow 104.155.149.19/32;
allow 130.211.230.102/32;
deny all;
}Allowing Access via Apache
To allow access to source maps with Apache you can use this example. It can either go into your .htaccess or global config. This example assumes your source maps live in /static/dist:
<FilesMatch "\.map$">
Order deny,allow
Deny from all
Allow from 35.184.238.160/32
Allow from 104.155.159.182/32
Allow from 104.155.149.19/32
Allow from 130.211.230.102/32
</FilesMatch>Email Delivery
All email is delivered from SendGrid from the following static IP addresses:
167.89.86.73
167.89.84.75
167.89.84.14