Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 21 additions & 1 deletion docs/security-legal-pii/security/ip-ranges.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Sentry's dashboard and API are both served from different domains, depending
on your organization's data storage location. The IP addresses are:

```plaintext
sentry.io 35.186.247.156/32
sentry.io 34.8.226.60/32, 34.111.148.117/32
us.sentry.io 35.186.247.156/32
de.sentry.io 34.36.122.224/32, 34.36.87.148/32
```
Expand Down Expand Up @@ -66,6 +66,14 @@ In some circumstances the Hosted Sentry infrastructure might send HTTP requests

Sentry uses the following IP addresses to make outbound requests:

Control Silo

```plaintext
35.222.255.47/32
34.61.215.243/32
34.71.103.17/32
Comment thread
sentry[bot] marked this conversation as resolved.
```

US Data Storage Location

```plaintext
Expand All @@ -91,10 +99,16 @@ To allow access to source maps with Nginx for instance, you can use this locatio
location ~ ^/static/dist/(.+)\.map$ {
alias /your/path/site/static/dist/$1.map;

allow 35.222.255.47/32;
allow 34.61.215.243/32;
allow 34.71.103.17/32;
allow 35.184.238.160/32;
allow 104.155.159.182/32;
allow 104.155.149.19/32;
allow 130.211.230.102/32;
allow 34.141.31.19/32;
allow 34.141.4.162/32;
allow 35.234.78.236/32;
deny all;
}
```
Expand All @@ -107,10 +121,16 @@ To allow access to source maps with Apache you can use this example. It can eith
<FilesMatch "\.map$">
Order deny,allow
Deny from all
Allow from 35.222.255.47/32
Allow from 34.61.215.243/32
Allow from 34.71.103.17/32
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
Allow from 34.141.31.19/32
Allow from 34.141.4.162/32
Allow from 35.234.78.236/32
</FilesMatch>
```

Expand Down
Loading