Configure AWS Deployment
Learn how to configure your pdfRest Self-Hosted API on AWS.
Configure Deployed Self-Hosted API
How to configure Self-Hosted API deployments subscribed to from the AWS Marketplace.

Updating a CloudFormation Deployment
Self-Hosted API products deployed via CloudFormation are configured during Stack creation. If you would like to change the configuration of an existing deployment, follow the instructions below.
To update an existing Self-Hosted API on AWS deployment:
The AWS console
Go to CloudFormation Stacks section of the AWS console.
Enter the stack update menu
Identify the correct Stack and click "Update".
Use the existing template
On the "Prepare Template" menu, use the existing template. This should be selected by default.
Parameters and environment variables
The 'Specify stack details' page is where you will be presented with all of the Required
and Optional
parameters. Refer to the Environment Variables section further down this page. Update any parameter values as necessary.
Submit update
After you have made the necessary changes to the Stack configuration, click Submit. The CloudFormation deployment will begin to rebuild the Stack with the new paramter values.
After submitting the build request, you will be taken to the CloudFormation Stacks page. There you will see the status of your Stack. It will likely be UPDATE_IN_PROGRESS
.
Click on the Stack name for additional information.
When the Self-Hosted API is finished updating, the Stack status will be UPDATE_COMPLETE
.
Further information about updating existing CloudFormation Stacks can be found in the AWS CloudFormation documentation.
Configure an AMI Deployment
Start the Docker Daemon
For this process, you will need to have already launched an instance by following the AMI Deployment guide.
Find your EC2 instance in the AWS Console
You can view information about your instance in the EC2 Console Instances view. You can reach it from the EC2 Dashboard with any of these links.
View your Instance details
Checking the box will select the instance in this view, and clicking the link will open the instance details in its own view. For this guide, we’ll click the link and open the instance details in its own view.
Log into your Instance
AWS has extensive guides on connecting to EC2 instances from a variety of Operating Systems available here.
Look for Public IPv4 DNS on the Details tab. Log onto the server using that URL, the username ec2-user
, and the keypair you selected when creating the instance.
Starting the Docker server
Official Docker documentation is located here
The following commands will start the Docker server with the default settings. Be sure to pick the command below that matches your Self-Hosted API product.
If you receive an error that the Docker daemon is not running, execute this command first:
Controlling the Container
The following commands control the Docker container:
Environment variables
Above, using the docker run
command, we started the server using the default configuration. As shown below, there are a number options that can be customized for the pdfRest service through its environment variables. Invoke environment variables by using -e
with the docker run
command.
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
Examples for starting server with customized configurations
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,
Installing msCoreFonts
These steps will help you install the standard set of fonts provided by Microsoft, known as the Microsoft core fonts.
Installing the fonts
Inside of the Docker container, run the following command to download and install the mscorefonts2
package from SourceForge.
Configure the container
Inside of the docker container, edit /opt/datalogics/pdf-utility/config/settings.js
and update msCoreFontsInstalled
to true
.
Apply the settings
While in the /opt/datalogics/pdf-utility/config/
directory, run the following command to apply the settings.
Manually Create an Elastic File System
Create an EFS
An Elastic File System is an optional infrastructure component. If you have two or more pdfRest Self-Hosted API products or instances and require any of the following, you will need to configure an EFS:
- Shared document storage between instances
- The ability to chain API calls between different products, such sending a document from PDF Toolkit to PDF Forms Pro.
- Most scenarios where instances are behind a Load Balancer
The CloudFormation deployment option automates the provisioning of an EFS and automatically connects instances to it.
Follow these instructions to manually set up an EFS for use with your Self-Hosted API. Please contact us for any assistance with Self-Hosted configuration.
- Create an Application Load Balancer.
- Copy the Public DNS of the Load Balancer. It will be used in future steps.
- Create instances of any pdfRest Self-Hosted API products using the AMI deployment guide.
- Create your Security Groups.
- Create your Elastic File System.
- Mount the EFS on the EC2 instance.
- Modify the
/etc/fstab
configuration file. - Modify the permissions on the directory:
- When executing
docker run
(as explained here), use-v
to bind the mounted directory to/opt/datalogics/public
. For example:
Mount Shared EFS
These steps will help you set up your pdfRest Self-Hosted API deployment to share an EFS volume between different Self-Hosted API products. This allows you chain API calls between various pdfRest products.
You can run the following commands to configure the mount for Docker. EFS_DNS_NAME
is the name of your EFS volume.
Finally, add the following command to the docker run
command you configured above:
Manually Load Balancing AMIs
Follow these instructions to manually set up a Load Balancer and Autoscaling Group for your Self-Hosted API. While we provide instructions for manually setting this up, this is best deployed as part of a CloudFormation stack.
The CloudFormation deployment option automates the provisioning and configuration of all of the following AWS resources. As always, it is highly recommended.
- Create a new AMI Snapshot from the EC2 dashboard.
- Create a new Launch Template.
- Create a new Target Group.
- Create a new Autoscaling Group.
- Add an Application Load Balancer to your Autoscaling Group.
- Create new Listener Rules on the ALB.
- Create new HTTPS Listener Rules on the ALB.
- Create new Security Group Rules to properly secure your ALB.