How to resolve this error
# gooddata-platform
j
How to resolve this error
j
j
If you are on the Community Edition, you will need to change the hostname by following the steps here: https://www.gooddata.com/developers/cloud-native/doc/2.0/deploy-and-install/community-edition/advanced-config/ You will need to setup a reverse proxy so the hostname points to the organization that is created by default in the docker image
j
ok checking
my nginx setup location / { # First attempt to serve request as file, then # as directory, then fall back to displaying a 404. try_files $uri $uri/ =404; } # example nginx reverse proxy config file # /etc/nginx/sites-available/default location /appLogin { proxy_pass http://localhost:3000/appLogin; proxy_buffering off; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Port $server_port;
still I am facing same eror
r
The error you're seeing means the hostname
gdata.ingress.systems
is not registered as organization hostname. You need to pass environment variable
GDCN_PUBLIC_URL=<https://gdata.ingress.systems>
to your gooddata-cn-ce container if you plan to put GoodData.CN CE behind reverse proxy (see the linked documentation above). You also need to proxy_pass all requests to gooddata-cn-ce container, not just
/appLogin
endpoint.