Update README.md

This commit is contained in:
GilbN 2020-12-29 20:02:32 +01:00 committed by GitHub
parent a0accbeb6f
commit 811b4c0e67
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,7 +109,7 @@ Nginx needs to be compiled with the geoip2 module: https://github.com/leev/ngx_h
```nginx
geoip2 /config/geoip2db/GeoLite2-City.mmdb {
auto_reload 5m;
$geoip2_data_country_code country iso_code;
$geoip2_data_country_iso_code country iso_code;
$geoip2_data_city_name city names en;
}
@ -117,7 +117,7 @@ log_format custom '$remote_addr - $remote_user [$time_local]'
'"$request" $status $body_bytes_sent'
'"$http_referer" $host "$http_user_agent"'
'"$request_time" "$upstream_connect_time"'
'"$geoip2_data_city_name" "$geoip2_data_country_code"';
'"$geoip2_data_city_name" "$geoip2_data_country_iso_code"';
```
2. Set the access log use the `custom` log format.