Annotation of embedaddon/lighttpd/doc/config/conf.d/geoip.conf, revision 1.1.1.2
1.1 misho 1: #######################################################################
2: ##
3: ## GeoIP Module
4: ## ---------------
5: ##
1.1.1.2 ! misho 6: ## See http://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModGeoip
! 7: ##
1.1 misho 8: ## mod_geoip is a module for fast ip/location lookups. It uses MaxMind
9: ## GeoIP / GeoCity databases. If the ip was found in the database the
10: ## module sets the appropriate environments variables to the request,
11: ## thus making other modules/fcgi be informed.
12: ##
13: server.modules += ( "mod_geoip" )
14:
15: ##
16: ## mod_geoip will determine the database type automatically so if you
17: ## enter GeoCity databse path it will load GeoCity Env.
18: ##
19: #geoip.db-filename = "/path/to/GeoCityLite.dat"
20:
21: ##
22: ## If enabled, mod_geoip will load the database binary file to memory
23: ## for very fast lookups. The only penalty is memory usage.
24: ##
25: #geoip.memory-cache = "disable"
26:
27: ##
28: #######################################################################
FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>