2017-03-31 12:19:44 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
return [
|
2017-04-01 02:48:35 +02:00
|
|
|
/*
|
2017-03-31 12:19:44 +02:00
|
|
|
* Enable or disable captchas
|
|
|
|
*/
|
|
|
|
'enabled' => env('RECAPTCHA_ENABLED', true),
|
|
|
|
|
2017-04-01 03:12:49 +02:00
|
|
|
/*
|
|
|
|
* API endpoint for recaptcha checks. You should not edit this.
|
|
|
|
*/
|
2022-07-24 23:13:14 +02:00
|
|
|
'domain' => env('RECAPTCHA_DOMAIN', 'https://www.google.com/recaptcha/api/siteverify'),
|
2017-04-01 03:12:49 +02:00
|
|
|
|
2017-04-01 02:48:35 +02:00
|
|
|
/*
|
2017-03-31 12:19:44 +02:00
|
|
|
* Use a custom secret key, we use our public one by default
|
|
|
|
*/
|
2017-12-15 04:05:26 +01:00
|
|
|
'secret_key' => env('RECAPTCHA_SECRET_KEY', '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5'),
|
|
|
|
'_shipped_secret_key' => '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5',
|
2017-03-31 12:19:44 +02:00
|
|
|
|
2017-04-01 02:48:35 +02:00
|
|
|
/*
|
2017-03-31 12:19:44 +02:00
|
|
|
* Use a custom website key, we use our public one by default
|
|
|
|
*/
|
2017-12-15 04:05:26 +01:00
|
|
|
'website_key' => env('RECAPTCHA_WEBSITE_KEY', '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn'),
|
|
|
|
'_shipped_website_key' => '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn',
|
2017-03-31 12:19:44 +02:00
|
|
|
|
2017-04-01 02:48:35 +02:00
|
|
|
/*
|
2017-03-31 12:19:44 +02:00
|
|
|
* Domain verification is enabled by default and compares the domain used when solving the captcha
|
|
|
|
* as public keys can't have domain verification on google's side enabled (obviously).
|
|
|
|
*/
|
|
|
|
'verify_domain' => true,
|
2017-04-01 02:48:35 +02:00
|
|
|
];
|