mirror of
https://github.com/donlon/cloudflare-error-page.git
synced 2025-12-19 14:59:28 +00:00
21 lines
473 B
TOML
21 lines
473 B
TOML
# Url prefix for app urls
|
|
URL_PREFIX = ''
|
|
|
|
# Digits of item name in shared links
|
|
SHARE_LINK_DIGITS = 7
|
|
|
|
# Use short share url (without '/s' path)
|
|
SHORT_SHARE_URL = false
|
|
|
|
# Set to true if trust X-Forwarded-For/X-Forwarded-Proto header
|
|
BEHIND_PROXY = true
|
|
|
|
# Some random secret, will be auto-generated if empty
|
|
SECRET_KEY = ''
|
|
|
|
# Main database URI
|
|
SQLALCHEMY_DATABASE_URI = 'sqlite:///database.db'
|
|
|
|
# Rate limit storage for Flask-Limiter
|
|
RATELIMIT_STORAGE_URI = 'memory://'
|