You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The bouncer only allows to set one captcha key in the configuration, meaning it cannot handle multiple domains.
We need to allow override of the key defined in the configuration on a per-location/server basic with a variable, for example:
server {
server_name foo.com;
set$crowdsec_bouncer_captcha_provider"hcaptcha";
set$crowdsec_bouncer_captcha_secret_key"XXXXX";
set$crowdsec_bouncer_captcha_site_key"XXXXX";
location/ {
....
}
}
# If nothing is set, take the value from the bouncer config fileserver {
server_name bar.com;
location/ {
....
}
}
The text was updated successfully, but these errors were encountered:
The bouncer only allows to set one captcha key in the configuration, meaning it cannot handle multiple domains.
We need to allow override of the key defined in the configuration on a per-location/server basic with a variable, for example:
The text was updated successfully, but these errors were encountered: