Install Print Server on Unix#
To install your own print server on an Ubuntu/Debian machine, use the Docker version. You can download the Docker Compose file from this URL. After downloading, you can easily map the HTTP and HTTPS ports by editing the following section in the file:
version: "3.9"
services:
web:
image: "bryntum/pdf-export-server:1.0.1"
ports:
- "8090:8080" #Map the HTTP port
- "8092:8081" #Map the HTTPS port
This starts the print server on http://localhost:8090
.
This URL must be set in the Allegra Advanced Settings file. Note that Allegra must be accessible from within the Docker container.