Configure Container API
Learn how to configure the pdfRest Container API to meet your needs.
Environment variables
The pdfRest Container API is highly configurable using environment variables. These control a variety of features, such as maximum file upload size or CPU concurrency. The list of environment variables and their functions are below:
1
for true or 2
for false. Defaults to 1
for true. REMOVE_ORIGINAL_PROCESSED
to be 1
. Defaults to 1800000
(30 minutes). 1800
(30 minutes) 1000
. id
UUIDs to visually and programatically identify them. Defaults to 1
. id
UUIDs to visually and programatically identify them. Defaults to 2
. https://pdfrest.com
. ex. An instance with 4 CPU cores would default to
PDFREST_MAX_CLU_CONCURRENCY
= 3
Setting variables in Docker
In docker these variables can be set under:
services > **pdfrest_service** > env
Setting variables in Kubernetes
In Kubernetes they can be set under:
spec > template > spec > containers > **pdfrest_container** > env
Installing msCoreFonts
Microsoft Core Fonts are not licensed to be distributed with pdfRest API products but they are freely available from SourceForge for you to install. These are optional when deploying the pdfRest API and enable the following features:
- Support maximum file size reduction with Compress PDF by enabling font subsetting
- Subsetting the fonts that are embedded in the document is an important step to reduce PDF file size. The subset of the font contains only those font characters actually used in the PDF document.
- Support font embedding, a required step to Convert to PDF/A
- Embedding fonts in your output PDF document ensures that the document can be opened and viewed on any machine, because the fonts travel with that document. Quite literally, the necessary font files are saved within that PDF file. This is required for all PDF/A specifications to support long-term preservation.
- Expand the set of supported fonts that may be used with Watermark PDF.
- Once installed,
msCoreFonts
are available for use with the Watermark PDF API Tool, expanding the set of fonts that can be applied with a text-based watermark.
- Once installed,
These commands should be programmed to run on server start, or configured as a new layer on top of the existing one.