summaryrefslogtreecommitdiff
path: root/doc/config/conf.d/geoip.conf
diff options
context:
space:
mode:
Diffstat (limited to 'doc/config/conf.d/geoip.conf')
-rw-r--r--doc/config/conf.d/geoip.conf28
1 files changed, 0 insertions, 28 deletions
diff --git a/doc/config/conf.d/geoip.conf b/doc/config/conf.d/geoip.conf
deleted file mode 100644
index d0da3067..00000000
--- a/doc/config/conf.d/geoip.conf
+++ /dev/null
@@ -1,28 +0,0 @@
-#######################################################################
-##
-## GeoIP Module
-## ---------------
-##
-## See https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModGeoip
-##
-## mod_geoip is a module for fast ip/location lookups. It uses MaxMind
-## GeoIP / GeoCity databases. If the ip was found in the database the
-## module sets the appropriate environments variables to the request,
-## thus making other modules/fcgi be informed.
-##
-server.modules += ( "mod_geoip" )
-
-##
-## mod_geoip will determine the database type automatically so if you
-## enter GeoCity databse path it will load GeoCity Env.
-##
-#geoip.db-filename = "/path/to/GeoLiteCity.dat"
-
-##
-## If enabled, mod_geoip will load the database binary file to memory
-## for very fast lookups. The only penalty is memory usage.
-##
-#geoip.memory-cache = "disable"
-
-##
-#######################################################################