Corteza Online deployment to AWS Ec2 gives 503 server unavailable

i followed this link : https://docs.cortezaproject.org/corteza-docs/2022.9/devops-guide/index.html#deploy-offline

and used a standard Ubuntu 22.04 Ec2 instance with sufficient resources.
However, i cannot seem to get the low code app running.

http://43.204.0.121/

All the systems seem to be health

Hi @asifzahan ,

the docker containers are healthy are running ok, what is missing is a port allocation.

On the right of the docker container list are the ports details, which tell us that they are not exposing the 80 port.

What we usually do is add another container - nginx proxy that opens the http/https ports and internally route the requests to the 80 port of the corteza container (via internal docker network).

Refer to the DevOps Guide :: Corteza Docs for more info on that.