First off this is a sentry install. I have noticed a bug where some options on the project settings page refers to sentry.io instead of our webserver hosting the server?
links using the url function ( a href="{% url ‘sentry-manage-project’ project.organization.slug project.slug %}">{% trans “General” %}) do use the SENTRY_URL_PREFIX
where as links generated using absolute_uri ( a href="{% absolute_uri ‘/{}/{}/’ project.organization.slug project.slug %}">Issues) dont use the SENTRY_URL_PREFIX
I had a look and url references views where as absolute_uri uses this inside http module?
def absolute_uri(url=None):
if not url:
return options.get(‘system.url-prefix’)
return urljoin(options.get(‘system.url-prefix’).rstrip(’/’) + ‘/’, url.lstrip(’/’))
i think the issue is something todo with options.get(‘system.url-prefix’) ?
Hey @jackc, SENTRY_URL_PREFIX has been replaced by the system.url-prefix option a long time ago.
But either way, I don’t see any places where we’ve accidentally used sentry.io ourselves, so the only other real explanation is that you literally have set system.url-prefix yourself to sentry.io