mirror of
https://github.com/donlon/cloudflare-error-page.git
synced 2025-12-19 14:59:28 +00:00
27 lines
578 B
TOML
27 lines
578 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
|
|
|
|
# Icon URL for rendered pages
|
|
PAGE_ICON_URL = ''
|
|
|
|
# MIME type of page icon
|
|
PAGE_ICON_TYPE = 'image/png'
|
|
|
|
# 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://'
|