This makes some options non-optional -- allowing for a smaller config file. This also removes the X-Sendfile example, bucause the proxy server should handle static files directly and the option is not at all specific to this particular application (and general Flask options aren't documented).
27 lines
891 B
Python
27 lines
891 B
Python
|
|
# Enables detailed tracebacks and an interactive Python console on errors.
|
|
# Never use in production!
|
|
DEBUG = False
|
|
|
|
# Address for development server to listen on
|
|
HOST = "127.0.0.1"
|
|
# Port for development server to listen on
|
|
PORT = 5000
|
|
|
|
# File to store the JSON server list data in.
|
|
FILENAME = "list.json"
|
|
|
|
# Amount of time, is seconds, after which servers are removed from the list
|
|
# if they haven't updated their listings. Note: By default Minetest servers
|
|
# only announce once every 5 minutes, so this should be more than 300.
|
|
PURGE_TIME = 350
|
|
|
|
# List of banned IP addresses
|
|
BANLIST = []
|
|
|
|
# Creates server entries if a server sends an 'update' and there is no entry yet.
|
|
# This should only be used to populate the server list after list.json was deleted.
|
|
# This WILL cause problems such as mapgen, mods and privilege information missing from the list
|
|
ALLOW_UPDATE_WITHOUT_OLD = False
|
|
|