I'm having trouble updating the configuration, here's what I've tried:
SENTRY_FEATURES['auth:register'] = False to sentry.conf.pymake builddocker-compose run --rm web upgradedocker-compose restartSentry reloads but I still see the registration option. Had a look at https://github.com/getsentry/sentry/issues/2663 but can't see anything that helps.
Same problem as you, it looked like my sentry.conf.py wasn't actually pushed into the container. (Try doing docker ps then docker exec ctname cat sentry.conf.py)
Added second line, my Dockerfile looks like:
FROM sentry:8.11-onbuild
COPY sentry.conf.py /usr/src/sentry/sentry.conf.py
Then
docker-compose down
docker-compose build
make build
docker-compose up -d
Seems to have done it for me
Thanks, think it was the COPY sentry.conf.py /usr/src/sentry/sentry.conf.py line that I had wrong.
Weirdly, the registration link has disappeared, but if I invite a user, they click the link and get an option to Login or Register, but they can use a different email to what was invited? Is this supposed to happen? Seems like an issue, being able to use personal email addresses instead of company ones etc.
Closing due to inactivity. That said this should work now and if anyone has similar issues and reading this, please file a new issue and not comment under here :)
Most helpful comment
Same problem as you, it looked like my sentry.conf.py wasn't actually pushed into the container. (Try doing docker ps then
docker exec ctname cat sentry.conf.py)Added second line, my Dockerfile looks like:
Then
Seems to have done it for me