How to Customize and Manage CDN Rules

CDNs can improve the performance of static websites. Within the context of a global training business, your content needs to be easily accessible and up-to-date. In this unit, you’ll learn how to make other configuration changes so that CDNs work properly with static sites in production environments.

Last updated: Feb 12, 2023

Using Custom domains

From the exercise, you saw how the CDN had a unique URL in the form of endpointname.azureedge.net. Regardless of where the user is in the world, this URL will point to the nearest POP, in that way improving performance. While this approach works fine, the URL isn’t memorable, and doesn’t reflect your company’s brand.Read more

How to Reset WordPress Website Password

WordPress is a Content Management System (CMS) platform that you can use to manage website content. You can manage posts, views, plugins, and website themes through WordPress dashboard.

Since its first release in May 2003, WordPress has grown to become one of the most popular blog and website platforms. You need to install on a hosting service in order to build a website with WordPress.

Last updated: Feb 12, 2023

After that, you can enter the WordPress Admin page with your username and password to manage the website. However, what if you forget the password?Read more

Build and test apps on the same environment – Red Hat Enterprise Linux

Consistent environments ease application development, testing, and deployment

IT environments continue to increase in complexity, with many organizations deploying applications across a combination of on-site, cloud, and edge infrastructures. Compounding this, many organizations also develop and test their applications in a different environment than they use for production deployment to save costs.

However, this can lead to issues in production, and developers may not receive the tools, resources, and support they need to be most productive.

Last updated: Feb 12, 2023

Organizations can overcome these challenges by deploying consistent development and production environments.

To make it easier to build consistent environments, Red Hat now offers a new subscription for development use. Red Hat® Developer Subscription for Teams gives qualifying corporate developers access to Red Hat Enterprise Linux® at no extra cost, allowing your organization to build and test applications on the same innovative and reliable platform used for your production workloads.

Read more

Google Drive limits WhatsApp data Backup

At this moment, all information exchanged on WhatsApp can be stored on Google Drive for free. Users of the Android operating system do not have to worry about the place to store information in the online storage service. Because, Google allows to use unlimited space in Google Drive to store WhatsApp’s information. However, in the future, a place to store WhatsApp’s data for free in Google Drive may be specified.

Last updated: Feb 12, 2023

Read more

How to Set up Django Admin Site

When you create web applications, you’ll eventually want to create individual permissions for site access. Creating an admin interface for employees or clients to manipulate content can be a cumbersome task. Once again Django comes to the rescue with a simple admin feature that’s automatically created in projects. We now continue our journey through the Django platform by activating the admin site, adding user permissions, and exploring another view of the database.

Last updated: Feb 12, 2023

In this tutorial, you’ll learn how to:Read more

Modern eCommerce Web Application encryption

Now that you’ve configured the certificates for eCommerce Web Application Gateway and the backend pool, you can create a listener to handle incoming requests. The listener will wait for messages, decrypt them by using the private key, and then route these messages to the backend pool.

In this unit, you’ll set up the listener with port 443 and with the SSL certificate that you created in the first exercise. The following image highlights the elements you’ll set up in this exercise.

Last updated: Feb 12, 2023

Diagram that highlights the elements (frontend port, SSL certificate for eCommerce Web Application Gateway, listener, and rule) created in this exercise.Read more

How to Configure an Web Application Gateway listener for encryption

You have configured SSL for the connection between Azure Cloud Application Gateway and the servers in the backend pool. For the shipping portal, you need full end-to-end encryption. To do this, you’ll also need to encrypt the messages that the client sends to Application Gateway.

Last updated: Feb 12, 2023

Create a frontend port

Application Gateway receives requests through one or more ports. If you’re communicating with the gateway over HTTPS, you should configure an SSL port. Traditionally, HTTPS uses port 443. Use the az network application-gateway frontend-port create command to create a new frontend port. The following example shows how to create a frontend port for port 443:Read more

How to implement end-to-end encryption for the shipping portal application

You want to implement end-to-end encryption for the shipping portal application. Encrypting all data between users and servers will help ensure that no unauthorized user can intercept and read the data.

In this unit, you’ll set up the web application and the application gateway. Next, you’ll create some self-signed SSL certificates and enable encryption in your backend pool to help secure the traffic from the application gateway to your servers.

Last updated: Feb 12, 2023

The following image highlights the elements you’ll configure in this exercise. You’ll be setting up an application gateway by using Azure Application Gateway v2.

Read more

Web Application Cloud Configure back-end pools for encryption

The back-end pool contains the servers that implement the application. Azure Application Gateway routes requests to these servers, and can load balance the traffic across these servers.

In the shipping portal, the application servers in the back-end pool must use SSL to encrypt the data that passes between Application Gateway and the servers in the back-end pool. Application Gateway uses an SSL certificate with a public key to encrypt the data. The servers use the corresponding private key to decrypt the data as it’s received. In this unit, you’ll see how to create the back-end pool and install the necessary certificates in Application Gateway to help protect the messages that are transmitted to and from the back-end pool.Read more