Skip to content

DNS

To access your projects from a custom domain, you can add a CNAME record to the DNS configuration of your domain.

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

Find information on how to set up a CNAME record below.

When CNAME records are not an option

At times, setting up a CNAME record might be disadvantageous or not possible at all. 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 set up with a CNAME 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() },
});
}