* website: Bump prettier from 3.3.3 to 3.4.1 in /website Bumps [prettier](https://github.com/prettier/prettier) from 3.3.3 to 3.4.1. - [Release notes](https://github.com/prettier/prettier/releases) - [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md) - [Commits](https://github.com/prettier/prettier/compare/3.3.3...3.4.1) --- updated-dependencies: - dependency-name: prettier dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * update formatting Signed-off-by: Jens Langhammer <jens@goauthentik.io> * sigh Signed-off-by: Jens Langhammer <jens@goauthentik.io> * disable flaky test Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Jens Langhammer <jens@goauthentik.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jens Langhammer <jens@goauthentik.io>
1.3 KiB
1.3 KiB
title, sidebar_label
| title | sidebar_label |
|---|---|
| Integrate with Gatus | Gatus |
Gatus
Support level: Community
What is Gatus?
Gatus is a free and open source project for endpoint monitoring. It allows many types of monitoring from pings or http requests to DNS checking and certification expiration. This is all done through yaml files.
Preparation
The following placeholders will be used:
gatus.companyis the FQDN of the Gatus install.authentik.companyis the FQDN of the authentik install.
authentik configuration
Create an OIDC provider with the following settings:
- Name: 'gatus'
- Redirect URL: 'https://gatus.company/authorization-code/callback'
Everything else is up to you and what you want, just don't forget to grab the client ID and secret!
Gatus configuration
In the config.yaml file of Gatus, add the following:
security:
oidc:
issuer-url: https://authentik.company/application/o/gatus/
client-id: "CLIENT_ID"
client-secret: "CLIENT_SECRET"
redirect-url: https://gatus.company/authorization-code/callback
scopes: [openid]
:::note Gatus auto-updates the configuration about every 30 seconds. However, if it does not pick up the changes, just restart the instance. :::