Skip to content

DNS

To access your projects from a custom domain, you can add an ALIAS, also known as ANAME, or CNAME record to the DNS configuration of your domain.

LocationAddress
*dns.zugriff.eu
Germanyde.dns.zugriff.eu
Finlandfi.dns.zugriff.eu

When ALIAS and CNAME records are not an option

Section titled “When ALIAS and CNAME records are not an option”

At times, setting up a CNAME record may be disadvantageous or even impossible. Instead, you can set up an A or AAAA record.
To still benefit from GSLB, you can connect your domain to a deployment (e.g. your first deployment) that throws a permanent redirect to a domain configured with a dynamic record. Please see the example below.

export function handler(request) {
let url = new URL(request.url);
url.host = 'www.yourdomain.com';
return new Response(null, {
status: 308,
headers: { Location: url.toString() },
});
}