DNS configuration

Pre-requisite:

Complete the Installation / AWS guide.

Configure DNS,

  1. Create a DNS record for the service following the AWS Route 53 documentation.

  2. Create a SSL Certificate and attach is to the DNS record, following the AWS Certificate Manager documentation.

  3. Create and run a new revision of the ECS Task Definition, described in the guide to Create & run ECS services & tasks, updating the environment variable REACT_APP_NODEAPP_HOST , with the new DNS record, as follows.

 ...
            "environment": [
                {
                    "name": "REACT_APP_NODEAPP_HOST",
                    "value": "https://your.newdnsrecord.com:9600"
                },
                ...

N.B. the port is the same port number described in the security group in VPC Configuration.

Last updated