Tweak the sample config

This commit is contained in:
Dominik V. Salonen 2018-03-20 22:16:48 +01:00
parent d5a2a2a82e
commit d2acfd264b
1 changed files with 3 additions and 3 deletions

View File

@ -13,10 +13,10 @@ config["HOST"] = "127.0.0.1"
config["DOMAIN"] = "http://example.com"
config["PORT"] = 8282
# Disable this for production use
# Will output more logging data from QuadFile's logger
config["DEBUG"] = False
# Extended debug will add extra debug output that's not normally provided by flask
# Extended Debug will enable flask debugging. Keep this off for production use
config["EXTENDED_DEBUG"] = False
# Single user authentication, leave blank to disable authentication
@ -39,5 +39,5 @@ config["CLEAN_INTERVAL"] = 120
# Site info displayed to the user
config["SITE_DATA"] = {
"title": "QuadFile",
"size": "100 MiB" # This is only for display, please limit filesizes using your web server
"size": "100 MiB" # This is only for display, please limit filesize using your web server
}