After I created a new project, sentry did not generate a DSN.It's empty.


a same problem,I have built local Docker server with Sentry,but dsn is empty.

Same here!
同样,构建完成后,没有显示DSN
After I created a new project, sentry did not generate a DSN.It's empty.
Is the request solved?
在登陆后将默认的localhost:9000改为127.0.0.1:9000,即可
在登陆后将默认的本地主机:9000改为127.0.0.1:9000,即可
The problem was solved in this way.Thank you.
应该是防火墙或者网络限制之类的原因,就算DSN没有显示,也可以自己合成dsn信息的,组成为http://公钥@ip:port/projectid。
I have the same issue, It's there any idea how can I fix it?
I fixed this when I set the following code at config.yml
###################
# System Settings #
###################
# If this file ever becomes compromised, it's important to regenerate your a new key
# Changing this value will result in all current sessions being invalidated.
# A new key can be generated with `$ sentry config generate-secret-key`
# system.secret-key: 'changeme'
system.url-prefix: 'http://my-sentry-host:9000'
Than
docker-compose build # Build the services again after updating
docker-compose up -d # Recreate the services
Hope can help you.
Most helpful comment
I fixed this when I set the following code at
config.ymlThan
Hope can help you.