Birden fazla bölgede sunucuları olan nginx kullanıcıları için; https://www.digitalocean.com/community/tutorials/how-to-use-nginx-as-a-global-traffic-director-on-debian-or-ubuntu To complete this guide, you will need a user with sudo privileges. You also need to know how to create servers in different regions. Assumptions This article makes a few assumptions for ease of readability. Your domain is www.example.com Your primary server is in the US You want to install a GTD for Europe and Asia Your server IPs are as follows: US: 1.1.1.1 EU: 1.1.1.2 AS: 1.1.1.3 Subdomains and DNS configuration Choosing subdomains is all up to you. For this tutorial, let's use eu.example.com for Europe and as.example.com for Asia. For each of those subdomains, add an A record in your DNS configuration with the IP of the server for that region: eu.example.com - 1.1.1.2 as.example.com - 1.1.1.3 It should look something like this: Install Nginx and GeoIP To have Nginx with a GeoIP module, you have two opti...