GuidesConfigurationServer

Server Config

Stump will use default options if you don’t manually configure them. When following this guide, keep in mind you only need to provide values for things you wish to override.

Stump uses something called environment variables to set all the various configuration properties. These environment variables are controlled has a custom TOML-based configuration, which is located by default at $STUMP_CONFIG_DIR/Stump.toml. STUMP_CONFIG_DIR itself is an environment variable that defaults to .stump your home directory, e.g., /Users/oromei/.stump.

If you’re using Stump with Docker, you’ll want to specify environment variables in either the docker run or docker-compose.yml file to override the default configuration. See the Docker guide for more information.

Environment Variables

There are a number of configuration options that you can set to customize Stump’s behavior. You will be setting these options in the Stump.toml file, but you can also set them as environment variables.

The following is a list of all the environment variables that Stump uses to configure itself:

API_VERSION

The version of the Stump API to use. This should really be left alone and not manually set.

TypeDefault Value
Integer1

This corresponds to the api_version configuration option in the Stump.toml file.

EMAIL_TEMPLATES_DIR

The directory where Stump will look for email templates. This is only required if you want to use custom email templates. By default, Stump will look for email templates in the templates directory in the root of the configuration directory. E.g., if your configuration directory is ~/.stump, Stump will look for email templates in ~/.stump/templates.

TypeDefault Value
String{config_dir}/templates

ENABLE_KOREADER_SYNC

Whether or not to enable the KoReader sync integration. This is a special integration that allows KoReader to sync with Stump. To learn more about this integration, visit the KoReader guide.

TypeDefault Value
Booleanfalse

ENABLE_OPDS_PROGRESSION

Whether or not OPDS page access should automatically track reading progression. When disabled, accessing pages via OPDS won’t update reading progress, which prevents inaccurate tracking when clients preload or cache multiple pages at once. This is particularly useful for OPDS clients that load more than one page at a time.

TypeDefault Value
Booleanfalse

ENABLE_SWAGGER_UI

Whether or not to enable Swagger UI. To learn more about what Swagger UI is, visit swagger.io.

TypeDefault Value
Booleanfalse

ENABLE_UPLOAD

TypeDefault Value
Booleanfalse

HASH_COST

Controls the computational cost used when hashing user passwords.

TypeDefault Value
Integer12

MAX_FILE_UPLOAD_SIZE

The maximum allowed size, in bytes, of files uploaded via the upload interface. This configuration variable will have no effect unless ENABLE_UPLOAD is true.

TypeDefault Value
Integer20971520 (20 MB)

MAX_IMAGE_UPLOAD_SIZE

The maximum size, in bytes, for images uploaded as thumbnails for users, libraries, series, or media.

TypeDefault Value
Integer20971520 (20 MB)

PDFIUM_PATH

The path to the PDFium binary. This is only required if you want PDF support and you’re running Stump outside of Docker, since the PDFium binary is included in the Docker image. You’ll want to find and download the PDFium binary for your platform from here, and then set this environment variable to the path of the binary.

TypeDefault Value
String/lib/libpdfium.so in Docker

SESSION_EXPIRY_CLEANUP_INTERVAL

The time (in seconds) between each session expiry cleanup check. The check will remove any expired sessions from the database.

TypeDefault Value
Integer60

SESSION_TTL

The time-to-live for session cookies. This is the amount of time that a session cookie will be valid for in seconds. The default value is 259200, or 3 days. You can set this to a different value if you want sessions to expire sooner or later, depending on your needs.

TypeDefault Value
Integer259200

STUMP_ALLOWED_ORIGINS

A comma-delineated list of allowed origins for the Stump API. If you’re trying to access the API from a different domain, you’ll need to add it to this list. By default, origins corresponding to the Tauri desktop application are allowed, and the host machine’s IP address with the configured port is allowed for both HTTP and HTTPS.

TypeDefault Value
String"tauri://localhost","https://tauri.localhost","http(s)://{machine_ip}:{configured_port}"

This corresponds to the allowed_origins configuration option in the Stump.toml file, but will be stored as a valid array in the configuration file.

Be sure to replace {machine_ip} and {configured_port} with the appropriate values for your environment.

STUMP_CLIENT_DIR

The directory the contains the web bundle for the web UI

TypeDefault Value
String./dist

STUMP_CONFIG_DIR

The directory where Stump will look for its configuration file.

TypeDefault Value
String~/.stump

STUMP_DB_PATH

Overrides the path where Stump stores its database file. By default this path is same as parent directory of STUMP_CONFIG_DIR. If set the database would be put at STUMP_DB_PATH/stump.db.

TypeDefault Value
String

STUMP_MAX_SCANNER_CONCURRENCY

The maximum number of files which may be processed concurrently by the scanner. This is useful for limiting the number of files that are processed at once, which can help prevent the server from becoming overwhelmed on systems with limited resources.

Note: The OS thread scheduler should prevent overload, however, you may want to set this value lower if you’re running Stump on a system with limited resources.

TypeDefault Value
Integer200

STUMP_MAX_THUMBNAIL_CONCURRENCY

The maximum number of images which may be generated concurrently by the thumbnailer. This is useful for limiting the number of thumbnails that are generated at once, which can help prevent the server from becoming overwhelmed on systems with limited resources.

Note: Thumbnail generation is a CPU-intensive process, so you may want to set this value lower if you’re running Stump on a system with limited resources.

TypeDefault Value
Integer50

STUMP_OIDC_ENABLED

Whether or not to enable OpenID Connect (OIDC) authentication. When enabled, users can sign in using an external identity provider. See the OIDC guide for more information.

TypeDefault Value
Booleanfalse

STUMP_OIDC_ISSUER_URL

The base URL of your OIDC provider. This should be the URL where the provider’s .well-known/openid-configuration endpoint can be found.

Required when STUMP_OIDC_ENABLED is true.

TypeDefault Value
StringN/A

Example: https://pocketid.stump.mycloud

STUMP_OIDC_CLIENT_ID

The client ID provided by your OIDC provider for the Stump application

Required when STUMP_OIDC_ENABLED is true.

TypeDefault Value
StringN/A

STUMP_OIDC_CLIENT_SECRET

The client secret provided by your OIDC provider for the Stump application

Required when STUMP_OIDC_ENABLED is true.

TypeDefault Value
StringN/A

STUMP_OIDC_SCOPES

A comma-separated list of additional scopes to request from the OIDC provider

TypeDefault Value
Stringopenid,email,profile

STUMP_OIDC_ALLOW_REGISTRATION

Whether or not to allow automatic user registration via OIDC on first login. When enabled, users who sign in with OIDC for the first time will have an account automatically created for them.

TypeDefault Value
Booleantrue

STUMP_OIDC_DISABLE_LOCAL_AUTH

Whether or not to disable local username/password authentication when OIDC is enabled. When set to true, the username/password login form will be hidden and only OIDC authentication will be available.

Note: Some features, such as OPDS feeds, still require username/password authentication even when this is enabled.

TypeDefault Value
Booleanfalse

STUMP_PDF_CACHE_PAGES

Controls whether rendered PDF pages are cached.

TypeDefault Value
Booleantrue

STUMP_PDF_HIGH_QUALITY

Enables higher-quality PDF rendering at the cost of increased resource usage.

TypeDefault Value
Booleantrue

STUMP_PDF_MAX_DIMENSION

Controls the maximum width or height (in pixels) for rendered PDF images.

TypeDefault Value
Integer1200

STUMP_PDF_PRERENDER_RANGE

Controls how many pages before and after the current page should be pre-rendered.

TypeDefault Value
Integer5

STUMP_PDF_RENDER_DPI

Sets the DPI (dots per inch) used when rendering PDF pages. High values increases image clarity at the cost of memory usage and render time.

TypeDefault Value
Integer150

STUMP_PDF_RENDER_FORMAT

Specifies the images format used when rendering PDF pages.

TypeDefault Value
Stringwebp

STUMP_PORT

The port for the Stump server.

TypeDefault Value
Integer10801

STUMP_PRETTY_LOGS

Controls whether logs are formatted in a human-friendly, pretty-printed style.

TypeDefault Value
Booleantrue

STUMP_PROFILE

The profile to use when running Stump. This should really be left alone and not manually set.

TypeDefault Value
Stringrelease

STUMP_VERBOSITY

The verbosity level for Stump logs. Verbosity levels are integers that correspond to a list of log levels that will be visible, and are inclusive of all the levels below them.

For example, if you set the verbosity level to 1, you will see INFO, WARN, and ERROR messages. If you set the verbosity level to 2, you will see DEBUG, INFO, WARN, and ERROR messages, and so on. The default verbosity level is 1.

You may turn off logging entirely by setting the verbosity level to 0. However, this is not recommended, as it will make it difficult to debug issues with Stump if they arise. I generally recommend setting the verbosity to 1, as it allows you to see info-level messages, warnings, and errors.

The available verbosity levels are:

OptionVisible Log Levels
0NONE
1INFO, WARN, ERROR
2DEBUG, INFO, WARN, ERROR
3TRACE, DEBUG, INFO, WARN, ERROR