Some test text!
Web / Guides / Deploy to Azure
This guide will detail possible methods for deploying on Azure, remember to keep in mind the minimum requirements when deploying WebViewer Server.
To build the WebViewer Server on a Linux VM, follow this guide on building docker compose images alongside our guide on building the WebViewer Server image .
version:"2.0"
or update docker-compose depending on the VM used.This section specifies how to build a Web App server for containers on Azure. Azure Web Apps provide you a fully managed environment for hosting web servers. This will be the easiest way to get setup on Azure.
Through the Azure Dashboard create a new Web Apps for Containers
resource on Azure.
On the resource creation screen, configure the settings of your server.
OS
option to Linux
.Click Configure Container
.
DockerHub
.Image and optional tag
type pdftron/webviewer-server:latest
. Click apply.1.5.1
can no longer be used on Web AppsSet the options Web Sockets
to On
and the option Always On
to true
. While running, these options will be under Application settings
and General settings
respectively.
Restart the container.
If you wish to access the container it will be available under the URL field on the Overview page. You can access the demo application built in by using URL/demo?s
to access it. It will take a few minutes for the server to become available after the initial creation is complete.
You may also add a key to the container and control any other settings as listed in our Docker image guide . Go to Application Settings
and under the heading Application Settings
select Add new setting
. Set the name to your setting and the value to the desired value, like such (you do not need to set this property if you are demoing our software):
TRN_PDFNET_KEY demo:12345
It is also possible to build the WebViewer Server container yourself and host it on Azure to be used with Web Apps, to do so follow this guide .
Building on a Container Instance allows you more flexibility in usage but does not offer the fully integrated environment that a Web App server provides.
Create a resource
in the Azure portal and search for Container Instances
, once you've found it select it and create.Container image type
to Public
. In the Container image
field type pdftron/webviewer-server:latest
.OK
Configuration
page should now be shown.
Port
to 8090
OS Type
to Linux
Environment Variable
to the variables you use under the environment
section of the docker-compose.yml
for example: "INCLUDE_DEMO":"true"
OK
twice more and the container should now be deploying.If you included the demo in this build, you should now be able to access the demo at container_instance_address:8090/demo?s
A private Azure image registry can also be used here.
The image registry is responsible for serving built container images on Azure. This can be done if you wish to host the Docker image directly within your network. This registry can be used when building Container Instances
or Web Apps for Containers
.
Microsoft also provides a more detailed guide on this process.
Create a resource
in the Azure portal and search for Container Registry
, once you've found it select it and create.Admin User
is enabled.Settings
> Access Keys
. You will need the username and password when pushing the image. Next go to Overview and find the Login Server
, you will also need this when pushing the image.docker login -u your_username -p your_password your_login_server
docker pull pdftron/webviewer-server:latest
docker tag pdftron/webviewer-server:latest your_login_server/image_name:latest
docker push your_login_server/image_name:latest
Trial setup questions? Ask experts on Discord
Need other help? Contact Support
Pricing or product questions? Contact Sales