2014-08-05 18:18:57 +02:00
|
|
|
---
|
2017-10-30 18:49:03 +01:00
|
|
|
# This settings are used to set your default system time zone.
|
|
|
|
# Time zones are usually located under /usr/share/zoneinfo and
|
|
|
|
# provided by the 'tzdata' package of your Distribution.
|
|
|
|
#
|
|
|
|
# Distributions using systemd can list available
|
|
|
|
# time zones by using the timedatectl command.
|
|
|
|
# timedatectl list-timezones
|
2018-03-29 23:35:36 +02:00
|
|
|
#
|
2018-03-29 22:50:02 +02:00
|
|
|
# The starting timezone (e.g. the pin-on-the-map) when entering
|
|
|
|
# the locale page can be set through keys *region* and *zone*.
|
|
|
|
# If either is not set, defaults to America/New_York.
|
|
|
|
#
|
2016-09-26 10:50:15 +02:00
|
|
|
region: "America"
|
|
|
|
zone: "New_York"
|
|
|
|
|
2017-10-30 18:49:03 +01:00
|
|
|
|
|
|
|
# System locales are detected in the following order:
|
|
|
|
#
|
2018-03-29 23:35:36 +02:00
|
|
|
# - /usr/share/i18n/SUPPORTED
|
|
|
|
# - localeGenPath (defaults to /etc/locale.gen if not set)
|
|
|
|
# - 'locale -a' output
|
|
|
|
#
|
2017-10-30 18:49:03 +01:00
|
|
|
# Enable only when your Distribution is using an
|
|
|
|
# custom path for locale.gen
|
|
|
|
#localeGenPath: "PATH_TO/locale.gen"
|
|
|
|
|
|
|
|
# GeoIP based Language settings:
|
2018-03-29 23:35:36 +02:00
|
|
|
#
|
|
|
|
# GeoIP need an working Internet connection.
|
|
|
|
# This can be managed from `welcome.conf` by adding
|
2017-10-30 18:49:03 +01:00
|
|
|
# internet to the list of required conditions.
|
2018-03-29 23:35:36 +02:00
|
|
|
#
|
2017-10-30 18:49:03 +01:00
|
|
|
# Leave commented out to disable GeoIP.
|
2018-03-29 22:50:02 +02:00
|
|
|
#
|
2018-04-12 20:37:38 +02:00
|
|
|
# An HTTP request is made to *geoipUrl* -- depending on the geoipStyle,
|
2018-04-12 23:13:34 +02:00
|
|
|
# the URL may be modified before use. The request should return
|
|
|
|
# valid data in a suitable format, depending on geoipStyle;
|
|
|
|
# generally this includes a string value with the timezone
|
2018-04-16 11:16:23 +02:00
|
|
|
# in <region>/<zone> format. For services that return data which
|
|
|
|
# does not follow the conventions of "suitable data" described
|
|
|
|
# below, *geoIPSelector* may be used to pick different data.
|
2018-03-29 22:50:02 +02:00
|
|
|
#
|
2018-04-12 16:18:15 +02:00
|
|
|
# Note that this example URL works, but the service is shutting
|
|
|
|
# down in June 2018.
|
2018-03-29 22:50:02 +02:00
|
|
|
#
|
2018-04-12 23:13:34 +02:00
|
|
|
# Suitable JSON data looks like
|
2018-03-29 22:50:02 +02:00
|
|
|
# ```
|
|
|
|
# {"time_zone":"America/New_York"}
|
|
|
|
# ```
|
2018-04-12 23:13:34 +02:00
|
|
|
# Suitable XML data looks like
|
|
|
|
# ```
|
|
|
|
# <Response><TimeZone>Europe/Brussels</TimeZone></Response>
|
|
|
|
# ```
|
2018-03-29 22:50:02 +02:00
|
|
|
#
|
2016-09-26 10:50:15 +02:00
|
|
|
#geoipUrl: "freegeoip.net"
|
2018-04-12 20:37:38 +02:00
|
|
|
|
|
|
|
# GeoIP style. Leave commented out for the "legacy" interpretation.
|
|
|
|
# This setting only makes sense if geoipUrl is set, enabliing geoIP.
|
|
|
|
#
|
|
|
|
# Possible values are:
|
|
|
|
# unset same as "legacy"
|
|
|
|
# blank same as "legacy"
|
|
|
|
# "legacy" appends "/json" to geoipUrl, above, and uses JSON format
|
|
|
|
# (which is what freegeoip.net provides there).
|
|
|
|
# "json" URL is not modified, uses JSON format.
|
|
|
|
# "xml" URL is not modified, uses XML format.
|
|
|
|
#
|
|
|
|
# The JSON format is provided by freegeoip.net, but that service is
|
|
|
|
# shutting down in June 2018. There are other providers with the same
|
|
|
|
# format. XML format is provided for Ubiquity.
|
|
|
|
#geoipStyle: "legacy"
|
2018-04-16 11:16:23 +02:00
|
|
|
|
|
|
|
# GeoIP selector. Leave commented out for the default selector
|
|
|
|
# (which depends on the style: JSON uses "time_zone" and XML
|
|
|
|
# uses TimeZone, for the FreeGeoIP-alike and the Ubiquity-alike
|
|
|
|
# respectively). If the service configured via *geoipUrl* uses
|
|
|
|
# a different attribute name (e.g. "timezone") in JSON or a
|
|
|
|
# different element tag (e.g. "<Time_Zone>") in XML, set this
|
|
|
|
# string to the name or tag to be used.
|
|
|
|
#geoipSelector: ""
|