docs(Traefik): Add basicAuth examples to docs (#4056)
This commit is contained in:
parent
096b77b25e
commit
65288b1c3d
|
@ -23,7 +23,7 @@ sources:
|
|||
- https://github.com/traefik/traefik-helm-chart
|
||||
- https://traefik.io/
|
||||
type: application
|
||||
version: 13.4.8
|
||||
version: 13.4.9
|
||||
annotations:
|
||||
truecharts.org/catagories: |
|
||||
- network
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 46 KiB |
Binary file not shown.
After Width: | Height: | Size: 10 KiB |
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
After Width: | Height: | Size: 8.3 KiB |
|
@ -0,0 +1,45 @@
|
|||
# Add Traefik Basic Auth to Apps
|
||||
|
||||
Our `traefik` chart has the ability to add various `middlewares` to the chart can add extra functionality to your setup. You can see the full list of `middlewares` inside the `traefik` menu options. In this guide we'll go over setting up the `Basic Auth` traefik middleware.
|
||||
|
||||
# Prerequisites
|
||||
|
||||
- Traefik installed (see previous steps of `SCALE Apps Manual`)
|
||||
|
||||
# Installation
|
||||
|
||||
Once `traefik` is installed, scroll down to the `Middlewares` section
|
||||
|
||||
![BasicAuth](img/BasicAuth.png)
|
||||
|
||||
When there, you can fill out the `Configure basicAuth` section with as follows
|
||||
|
||||
- Name the `basicAuth`, most people choose `basic`
|
||||
- Add as name users as necessary, choosing a specific `Username` and `Password` for each user.
|
||||
|
||||
# Adding it to Apps using Ingress
|
||||
|
||||
Once you have your `basicAuth` setup, you need to add it to apps that have `Ingress`(Traefik) enabled, otherwise you cannot use this middleware.
|
||||
|
||||
![EnabledIngress](img/IngressEnabled.png)
|
||||
|
||||
Scroll to the section `Configure Traefik Middlewares`
|
||||
|
||||
- Click `Add` to add a fillable section
|
||||
- Write in the name of the `basicAuth` from before. For most people that's basic as the example below.
|
||||
|
||||
![ConfigureTraefikMiddlewares](img/ConfigureTraefikMiddlewares.png)
|
||||
|
||||
# Verify Authentication
|
||||
|
||||
Once the `basicAuth` is installed, please visit the `URL` that you configured the `Ingress` for. If everything is setup correctly you should see the Pop-Up below.
|
||||
|
||||
![BasicAuthWorking](img/BasicAuthWorking.png)
|
||||
|
||||
## Video Guide
|
||||
|
||||
<iframe width="560" height="315" src="https://www.youtube.com/embed/hDdFKE5-c44" title="YouTube video player" frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowFullScreen></iframe>
|
||||
|
||||
## Support
|
||||
|
||||
- If you need more help you can also reach us using [Discord](https://discord.gg/tVsPTHWTtr) for real-time feedback and support.
|
Loading…
Reference in New Issue