Pterodactyl-Panel/config/recaptcha.php

27 lines
709 B
PHP
Raw Normal View History

<?php
return [
2017-04-01 02:48:35 +02:00
/*
* Enable or disable captchas
*/
'enabled' => env('RECAPTCHA_ENABLED', true),
2017-04-01 02:48:35 +02:00
/*
* Use a custom secret key, we use our public one by default
*/
'secret_key' => env('RECAPTCHA_SECRET_KEY', '6LekAxoUAAAAAPW-PxNWaCLH76WkClMLSa2jImwD'),
2017-04-01 02:48:35 +02:00
/*
* Use a custom website key, we use our public one by default
*/
2017-04-01 02:48:35 +02:00
'website_key' => env('RECAPTCHA_WEBSITE_KEY', '6LekAxoUAAAAADjWZJ4ufcDRZBBiH9vfHawqRbup'),
2017-04-01 02:48:35 +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
];