Encrypt a file and get it decrypted using FAST-API

Encrypt a file and get it decrypted using FAST-API

Tiempo de lectura: 2 minutos Today we are going to learn how to store an encrypted file and how to decrypt it to return it in a response. We will use the Fernet library. pip install cryptography First, let’s create an encryption key with Fernet. def generate_key(): key = Fernet.generate_key() return key.decode(‘utf-8’) With this function, we can obtain a random … Read more

Create a Redirection with Nginx Proxy Manager

Create a Redirection with Nginx Proxy Manager

Tiempo de lectura: < 1 minuto Today, we are going to learn how to create a redirection with Nginx Proxy Manager. Let’s assume that we want to redirect all traffic coming from myweb.com to www.myweb.com. First, we need to create our domain named myweb.com within Proxy Host: Now, open it and go to the Advanced section: And add the following within … Read more