Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

website/integrations: update uptime-kuma skip path documentation #12641

Merged
merged 6 commits into from
Jan 15, 2025
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions website/integrations/services/uptime-kuma/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,24 @@ Create an application in authentik. Create a Proxy provider with the following p
Add the following regex rules to keep the public status page accessible without authentication.

```
^/$
^/status
^/assets/
^/assets
^/status/.*
^/assets/.*
^/api/push/.*
^/api/badge/.*
^/api/status-page/heartbeat/.*
^/icon.svg
^/api/.*
^/upload/.*
^/metrics
```
Alternatively, you can get even more specific by analysing the requests for your status pages and modifying the regex rules above accordingly.
For example,

```
^/status/<slug>$
^/assets/.*
^/api/push/.*
^/api/badge/.*
^/api/status-page/heartbeat/<slug>$
^/upload/<file>$
```

To avoid that all users get admin access to Uptime Kuma create a group in authentik for the admin user. Next set in authentik for the application under `Policy / Group / User Bindings` a group binding with the group created above.
Expand Down
Loading