After migrating your website to VergeCloud and completing your DNS configurations, you can view and manage the A Records of your domain and its subdomains under the DNS Records section in the CDN settings of your user dashboard.
The Cloud Option is a feature that allows you to enhance your website’s performance and security by routing traffic through VergeCloud’s CDN edge servers. When the cloud option is enabled, your domain’s traffic, as well as that of its subdomains, is directed through VergeCloud’s global CDN infrastructure. If it is disabled, the traffic flows directly to your domain without CDN acceleration.
Activating the cloud option enables several powerful features, including:
You can also enable the cloud option for your DNS records using VergeCloud’s API. Below is an example API request that enables the cloud option for a specific record:
curl --location --request PUT 'https://api.vergecloud.com/domains/example.com/dns-records/Record_ID/cloud' \ --header 'Authorization: Bearer API_KEY' \ --header 'Content-Type: application/json' \ --data '{"cloud":true}'
It is important to note that enabling the cloud option for A Records associated with certain services can lead to service disruptions. Specifically, non-HTTP services such as email or FTP should not have the cloud option enabled. If such services are mistakenly routed through the CDN, they may become inaccessible or behave unexpectedly.
To turn off the cloud option for specific records, navigate to the DNS Records section and click on the cloud icon next to the service you wish to exclude.
Once you have activated the cloud option, you can verify the status of your DNS records by using the dig
command:
dig A example.com
; <<>> DiG 9.16.1-Ubuntu <<>> A example.com ;; global options: +cmd ;; Got answer: ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 67890 ;; flags: qr rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 0, ADDITIONAL: 1 ;; QUESTION SECTION: ;example.com. IN A ;; ANSWER SECTION: example.com. 3600 IN A 203.0.113.20 ;; Query time: 35 msec ;; SERVER: 8.8.8.8#53(8.8.8.8) ;; WHEN: Thu Sep 26 14:45:12 UTC 2024 ;; MSG SIZE rcvd: 68
A
record points to the correct IP address associated with VergeCloud’s CDN when the cloud option is enabled.