Skip to content

Commit be4d8c5

Browse files
authored
fix(nginx): _assets should rewrite to _static/sentry/dist (#1719)
See getsentry/self-hosted@01d7741
1 parent 0005226 commit be4d8c5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

charts/sentry/templates/configmap-nginx.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ data:
5353
proxy_pass http://sentry;
5454
}
5555
56+
location /_assets/ {
57+
proxy_pass http://sentry/_static/dist/sentry/;
58+
proxy_hide_header Content-Disposition;
59+
}
60+
5661
location /_static/ {
5762
proxy_pass http://sentry;
5863
proxy_hide_header Content-Disposition;

0 commit comments

Comments
 (0)