2023-08-02 17:49:07 -07:00
|
|
|
# Thumbnails directory. Defaults to "thumbs"
|
|
|
|
|
#THUMBS_DIR=thumbs
|
|
|
|
|
|
|
|
|
|
# HTML cache directory. Defaults to "cache"
|
|
|
|
|
#CACHE_DIR=cache
|
|
|
|
|
|
2023-08-02 18:40:45 -07:00
|
|
|
# Sqlite3 database path. Defaults to "bans.db"
|
|
|
|
|
#DB_SQLITE3_PATH=bans.db
|
|
|
|
|
|
2023-08-02 20:16:47 -07:00
|
|
|
# Domain name of the server. This is required.
|
2023-08-02 17:49:07 -07:00
|
|
|
HTTP_DOMAIN=domain.com
|
2023-08-02 18:31:36 -07:00
|
|
|
|
|
|
|
|
# Root of the HTTP server. Defaults to "/"
|
|
|
|
|
# If you host other things on your domain, you may want to update this to be "/bans" or something.
|
|
|
|
|
#HTTP_ROOT=/
|
2023-08-02 20:16:47 -07:00
|
|
|
|
2023-08-06 00:17:45 -07:00
|
|
|
# The number of results to show per page. Defaults to "100"
|
|
|
|
|
#HTTP_RESULTS_PER_PAGE=100
|
|
|
|
|
|
2023-08-02 20:16:47 -07:00
|
|
|
# Static files handler. Defaults to "local"
|
|
|
|
|
# Valid values are:
|
|
|
|
|
# * local
|
|
|
|
|
# * remote
|
|
|
|
|
# Locally handled static files use the STATIC_LOCAL_PATH config value.
|
|
|
|
|
# IN GENERAL, the "local" configuration should not be used in a production environment.
|
|
|
|
|
#STATIC_HANDLER=local
|
|
|
|
|
|
|
|
|
|
# The local path to serve static files out of. Defaults to "static"
|
|
|
|
|
# This is only used when STATIC_HANDLER is set to "local".
|
|
|
|
|
#STATIC_LOCAL_PATH=static
|
|
|
|
|
|
|
|
|
|
# Whether to follow symlinks in the local static file handler. Defaults to "true"
|
|
|
|
|
# This is only used when STATIC_HANDLER is set to "local".
|
|
|
|
|
# Must be one of:
|
|
|
|
|
# * 1, true, yes
|
|
|
|
|
# * 0, false, no
|
|
|
|
|
#STATIC_LOCAL_FOLLOW_SYMLINKS=true
|
|
|
|
|
|
|
|
|
|
# This is the URL to map static files to. Defaults to /static
|
|
|
|
|
# This *WILL NOT* prepend the HTTP_ROOT path.
|
|
|
|
|
#STATIC_ROOT=/static
|