How to configure main settings

Once you create an edge application with Azion, you have a range of configurations you can modify. In this guide, you’ll learn to modify the protocols, delivery ports, and the encryption type that your application uses to interface with your end-users.

In this guide, you’ll modify some configurations of your application. You can see if the changes ocurred by accessing your Azion domain.

  1. Access Real-Time Manager.
  2. On the upper-left corner of the page, open the Products menu, represented by three horizontal lines, and select Edge Application.
  3. Click the edge application you want to configure. From this screen, you can alter the application’s name, delivery settings, and which modules it uses.

The following steps will guide you through editing an edge application’s settings for a boilerplate application. Feel free to change these settings whenever necessary to suit your requirements.

Modify your application to support the available delivery protocols.

  1. Go to the Main Settings tab.
  2. Under Delivery Protocol, select HTTP.
  3. Click the Save button.

After the propagation time, you’ll be able to access your edge application using the HTTP protocol. To test it, access the http://xxxxxxxxxx.map.azionedge.net address. You can also make the following cURL request in your terminal with the HTTP schema:

Terminal window
curl -I http://xxxxxxxxxx.map.azionedge.net/

If you receive a 2xx or 3xx response, it means your application is running on HTTP protocol.

Choose between the supported delivery ports for each protocol selected.

  1. Go to the Main Settings tab.
  2. Under Ports HTTP, in addition to port 80, select port 8008.
  3. Click the Save button.

Wait a few minutes for the changes to propagate to the edge and try to access your application using one of the new ports. For example, navigate to http://xxxxxxxxxx.map.azionedge.net:8008 and check if your application is running on the custom port.

Alternatively, you can make the following cURL request from your terminal:

Terminal window
curl -I http://xxxxxxxxxx.map.azionedge.net:8008

A successful response means your application is also running on port 8443.

Modules can unlock additional functionalities and features for your applications. See the Pricing page for more details.

For now, you’ll enable two modules. The Application Accelerator and Edge Functions modules will be used for when you tune your cache settings, instantiate an edge function, and work with Rules Engine.

If you’re an Account owner, start by enabling the following modules for your account:

  1. Access Real-Time Manager.
  2. On the top-right corner, click the Account menu.
  3. Select Billing & Subscriptions.
  4. Navigate to the Subscriptions tab.
  5. Enable the Application Accelerator and Edge Functions switches.
  6. Click the Save button.
  1. On the upper-left corner of the page, open the Products menu, represented by three horizontal lines, and then select Edge Application.
  2. Click the edge application you want to configure.
  3. Enable the modules Application Accelerator and Edge Functions.
  4. Click the Save button.

Contributors