fix(meshcentral): disable anti-AI middleware causing 500 errors
The rewrite-body plugin (anti-AI trap links) was crashing when processing MeshCentral's HTML responses, returning 500. Disabled anti_ai_scraping since it's a protected internal tool behind Authentik. Re-enabled Authentik protection.
This commit is contained in:
parent
09501fdb64
commit
7f13f5fd76
1 changed files with 2 additions and 1 deletions
|
|
@ -237,7 +237,8 @@ module "ingress" {
|
|||
name = "meshcentral"
|
||||
tls_secret_name = var.tls_secret_name
|
||||
port = 443
|
||||
protected = true
|
||||
protected = true
|
||||
anti_ai_scraping = false
|
||||
extra_annotations = {
|
||||
"gethomepage.dev/enabled" = "true"
|
||||
"gethomepage.dev/name" = "MeshCentral"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue