Annotation of embedaddon/lighttpd/doc/config/conf.d/geoip.conf, revision 1.1

1.1     ! misho       1: #######################################################################
        !             2: ##
        !             3: ##  GeoIP Module 
        !             4: ## --------------- 
        !             5: ##
        !             6: ## mod_geoip is a module for fast ip/location lookups. It uses MaxMind
        !             7: ## GeoIP / GeoCity databases. If the ip was found in the database the
        !             8: ## module sets the appropriate environments variables to the request,
        !             9: ## thus making other modules/fcgi be informed.
        !            10: ##
        !            11: server.modules += ( "mod_geoip" )
        !            12: 
        !            13: ##
        !            14: ## mod_geoip will determine the database type automatically so if you
        !            15: ## enter GeoCity databse path it will load GeoCity Env.
        !            16: ##
        !            17: #geoip.db-filename = "/path/to/GeoCityLite.dat"
        !            18: 
        !            19: ##
        !            20: ## If enabled, mod_geoip will load the database binary file to memory
        !            21: ## for very fast lookups. The only penalty is memory usage.
        !            22: ##
        !            23: #geoip.memory-cache = "disable"
        !            24: 
        !            25: ##
        !            26: #######################################################################

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>