aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/account/config/production.php
diff options
context:
space:
mode:
Diffstat (limited to 'main/app/sprinkles/account/config/production.php')
-rw-r--r--main/app/sprinkles/account/config/production.php67
1 files changed, 0 insertions, 67 deletions
diff --git a/main/app/sprinkles/account/config/production.php b/main/app/sprinkles/account/config/production.php
deleted file mode 100644
index 3ce9866..0000000
--- a/main/app/sprinkles/account/config/production.php
+++ /dev/null
@@ -1,67 +0,0 @@
-<?php
-
-/**
- * Account production config file for UserFrosting. You may override/extend this in your site's configuration file to customize deploy settings.
- *
- */
-
-return [
- // See http://security.stackexchange.com/a/59550/74909 for the inspiration for our throttling system
- 'throttles' => [
- 'check_username_request' => [
- 'method' => 'ip',
- 'interval' => 3600,
- 'delays' => [
- 40 => 1000
- ]
- ],
- 'password_reset_request' => [
- 'method' => 'ip',
- 'interval' => 3600,
- 'delays' => [
- 2 => 5,
- 3 => 10,
- 4 => 20,
- 5 => 40,
- 6 => 80,
- 7 => 600
- ]
- ],
- 'registration_attempt' => [
- 'method' => 'ip',
- 'interval' => 3600,
- 'delays' => [
- 2 => 5,
- 3 => 10,
- 4 => 20,
- 5 => 40,
- 6 => 80,
- 7 => 600
- ]
- ],
- 'sign_in_attempt' => [
- 'method' => 'ip',
- 'interval' => 3600,
- 'delays' => [
- 4 => 5,
- 5 => 10,
- 6 => 20,
- 7 => 40,
- 8 => 80,
- 9 => 600
- ]
- ],
- 'verification_request' => [
- 'method' => 'ip',
- 'interval' => 3600,
- 'delays' => [
- 2 => 5,
- 3 => 10,
- 4 => 20,
- 5 => 40,
- 6 => 80,
- 7 => 600
- ]
- ]
- ]
-];