Problems with 30min setup

I’ve run through the 30min setup to be used on a live nginx server ( not localhost ) which is proxy passing to taiga.

When viewing the site, it appears to be loading and no problems in the console - but its certainly getting stuck somewhere, its looks almost as if its stopping before its replacing any of the dynamic content ( see screen shot below )

Screenshot 2023-06-21 at 02.15.55

I started the application according to the manual in 30 minutes.
I couldn’t launch the app. I made my manual.
I want to ask, how did you set up?
I don’t like my option. Ports 9000 stick out.
Can you share your nginx setup?

Thanks!

sorry for the late reply.

I since tried setting it up again and the same issue. Below is the proxy pass part for nginx

proxy_pass "http://localhost:9000";
proxy_http_version 1.1;
proxy_set_header X-Forwarded-Host $host;   
proxy_set_header X-Forwarded-Server $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $http_host;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_pass_request_headers on;

If you use proxy pass to make Taiga accessible from a url with a domain, You are probably configuring taiga with localhost instead of the external domain, so your browser is trying to access localhost (the machine the browser is on) instead of the machine where taiga is served.

Could you share the configuration of your .env file and nginx site?