feat: add webp image format

This commit is contained in:
2024-02-18 17:38:06 +01:00
parent 16316ffa90
commit aab56d680d
55 changed files with 172 additions and 31 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -28,7 +28,7 @@ First of all, let's start by installing and configuring the docker. For that you
In my case I use Unraid and a template is directly available. I just have to set the port to use for the web interface.
<img src="img/image-1.png" alt="Unraid docker setup"/>
![Unraid docker setup](img/image-1.png)
Before launching the docker we will have to make several changes to the configuration file.
@@ -104,7 +104,7 @@ docker run --rm authelia/authelia:latest authelia hash-password 'yourpassword'
If this does not work you can manually create the hash using this [site](https://argon2.online) and these parameters:
<img src="img/image-2.png" alt="Argon2 hash generator"/>
![Argon2 hash generator](img/image-2.png)
### Access control
For the access policy we will do something simple with a single role. But nothing prevents you from creating several roles with different rights and access.
@@ -284,17 +284,17 @@ real_ip_recursive on;
Then you can add it in the `Advanced` tab of the desired subdomain:
<img src="img/image-3.png" alt="NginxProxyManager new proxy host advanced options"/>
![NginxProxyManager new proxy host advanced options](img/image-3.png)
After saving, go to the address of your subdomain to verify that it works. You should arrive on the following page:
<img src="img/image-4.png" alt="Authelia login page"/>
![Authelia login page](img/image-4.png)
You can connect with one of the credencials you created in the `users_database.yml` file. Once the connection is done, you should be redirected to the application hosted on the subdomain!
To configure/modify the double authentication method, go to the subdomain you have configured for Authelia (`ex. auth.youdomain.com`). Then select `Methods`:
<img src="img/image-5.png" alt="Authelia 2FA modal"/>
![Authelia 2FA modal](img/image-5.png)
## Conclusion