Weighted round-robin in nginx means sending requests to servers based on their assigned weights. For example, if one server has weight 3 and another weight 1, the first server gets 3 requests for every 1 request the second gets. This cycle repeats forever. The configuration uses the upstream block with server lines specifying weights. The execution table shows which server handles each request in order, cycling through according to weights. Variables track the current server and request count. Key points include understanding why servers get requests in proportion to weights, that order in config does not affect distribution, and that the cycle repeats indefinitely. Quizzes test understanding of which server handles which request and how changing weights affects distribution.