The screenshot shows a development environment.
Development environments work locally (with the API running on your local computer).
Look at the screenshot: the toaster indicates it’s trying to connect to your API on the address ‘http://localhost:3310’.
Since your API is on a server (ense.com:3310), that is the reason for the failure.
A Forest project should be first used locally, and then deployed on servers.
If you open a terminal on the machine you run your web browser and execute:
$> nc -vz localhost 3310
What is the result?
You should see: Connection to localhost port 3310 [tcp/dyna-access] succeeded!
If you get: nc: connectx to localhost port 3312 (tcp) failed: Connection refused
That means the server is not running on your localhost and ForestAdmin UI cannot access it.
You can also read this documentation about how installing forest on a remote machine.
Could you please share with us the detail fro the request that results in the shown error? (you should easily find it on the network tab of your browser’s console).
One thing you could also try is that it seems you have a proxy, so when using the command generated during the onboarding of Forest Admin you could add --application-host=https://ense.com (Or whatever is your domain)
I dont understand how it would work, once I have the server running in my server that is in Digitalocean, I cant open a browser from there, and even if I could, it would work because the curl localhost:3310 is responding ok.