Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pterodactyl
GitHub Repository: pterodactyl/panel
Path: blob/1.0-develop/config/recaptcha.php
7382 views
1
<?php
2
3
return [
4
/*
5
* Enable or disable captchas
6
*/
7
'enabled' => env('RECAPTCHA_ENABLED', true),
8
9
/*
10
* API endpoint for recaptcha checks. You should not edit this.
11
*/
12
'domain' => env('RECAPTCHA_DOMAIN', 'https://www.google.com/recaptcha/api/siteverify'),
13
14
/*
15
* Use a custom secret key, we use our public one by default
16
*/
17
'secret_key' => env('RECAPTCHA_SECRET_KEY', '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5'),
18
'_shipped_secret_key' => '6LcJcjwUAAAAALOcDJqAEYKTDhwELCkzUkNDQ0J5',
19
20
/*
21
* Use a custom website key, we use our public one by default
22
*/
23
'website_key' => env('RECAPTCHA_WEBSITE_KEY', '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn'),
24
'_shipped_website_key' => '6LcJcjwUAAAAAO_Xqjrtj9wWufUpYRnK6BW8lnfn',
25
26
/*
27
* Domain verification is enabled by default and compares the domain used when solving the captcha
28
* as public keys can't have domain verification on google's side enabled (obviously).
29
*/
30
'verify_domain' => true,
31
];
32
33