the browser-facing portion of osu!
at master 315 B view raw
1<?php 2 3return [ 4 'site_key' => env('TURNSTILE_SITE_KEY') ?? '', 5 'secret_key' => env('TURNSTILE_SECRET_KEY') ?? '', 6 7 // Include visitor IP adresse in verify challenge data 8 'include_ip' => false, 9 10 // Allow access in case the HTTP request fails with an 5xx error 11 'allow_on_failure' => false, 12];