--- /dev/null
+# Module for IP Based Geographic Lookups
+#
+# Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModMaxMindDB
+#
+# mod_maxminddb is a module for fast ip/location lookups. It uses MaxMind
+# GeoIP2 databases. If the IP was found in the database, the module sets the
+# appropriate environment variables to the request, thus making this
+# information available to other modules/fcgi.
+#
+# Redirecting based on GeoIP2 data can be performed inside lighttpd using
+# mod_magnet or using backend CGI, FastCGI, SCGI, etc.
+#
+# mod_maxminddb consumes MaxMind GeoIP2 databases. This is the successor to
+# GeoIP Legacy databases. GeoIP Legacy databases were discontinued 2 Jan 2019
+# (https://dev.maxmind.com/geoip/legacy/release-notes/) and mod_geoip is now
+# deprecated.
+
+server.modules += (
+ "mod_maxminddb"
+)
+
+# default: "disable"
+#maxminddb.activate = "enable"
+
+#maxminddb.db = "/path/to/the/GeoIP2/database.mmdb"
+
+# list of environment variables to set and associated lookup keys in GeoIP2 .mmdb.
+#maxminddb.env = (
+# "GEOIP_COUNTRY_CODE" => "country/iso_code",
+# "GEOIP_COUNTRY_NAME" => "country/names/en",
+# "GEOIP_CITY_NAME" => "city/names/en",
+# "GEOIP_CITY_LATITUDE" => "location/latitude",
+# "GEOIP_CITY_LONGITUDE" => "location/longitude",
+#)
--- /dev/null
+# Transparent socket proxy (available since lighttpd 1.4.51)
+#
+# mod_sockproxy is a transparent socket proxy. For a given $SERVER["socket"]
+# config, connections will be forwarded to backend(s) without any
+# interpretation of the protocol.
+#
+# Documentation: https://redmine.lighttpd.net/projects/lighttpd/wiki/Docs_ModSockProxy
+
+server.modules += (
+ "mod_sockproxy"
+)
+
+# debug level (value between 0 and 65535)
+#sockproxy.debug = 0
+
+# sockproxy.balance:
+# might be one of 'fair' (default), 'hash', 'round-robin' or 'sticky'.
+# - 'fair' or 'least-connection' is the normal load-based, passive balancing.
+# - 'round-robin' chooses another host for each request.
+# - 'hash' is generating a hash over the request-uri and makes sure that the
+# same request URI is sent to always the same host. That can increase the
+# performance of the backend servers a lot due to higher cache-locality.
+# - 'sticky' (since 1.4.44) sends requests from the same (client) IP to the same backend.
+#sockproxy.balance = "fair"
+
+# sockproxy.server:
+# backend server definition(s) for hosts to which to send requests; options for
+# each backend host. Every file-extension can have its own handler.
+# Load-balancing is done by specifying multiple hosts for the same extension.
+#sockproxy.server = (
+# "" => (
+# (
+# "host" => "10.0.0.242",
+# "port" => 10000,
+# ),
+# ),
+#)