我正在尝试在 nginx 上使用 geoip 模块,我认为我已经正确设置了所有内容,但我的问题是我正在使用的教程是 PHP 并且我正在使用 Python Flask。
这是PHP:
<html>
<head>
<title>What is my IP address - determine or retrieve my IP address</title>
</head>
<body>
<?php
$country_code = getenv(GEOIP_COUNTRY_CODE);
echo "<br/>Your country : $country_code";
?>
</body>
</html>
特别是这一行:
$country_code = getenv(GEOIP_COUNTRY_CODE);
做同样事情的等效 Python 代码是什么?如果有帮助,这是我正在使用的教程:LINK