summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/src/config/config.php
diff options
context:
space:
mode:
Diffstat (limited to 'admin/survey/minify/vendor/intervention/httpauth/src/config/config.php')
-rw-r--r--admin/survey/minify/vendor/intervention/httpauth/src/config/config.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/admin/survey/minify/vendor/intervention/httpauth/src/config/config.php b/admin/survey/minify/vendor/intervention/httpauth/src/config/config.php
new file mode 100644
index 0000000..0655eab
--- /dev/null
+++ b/admin/survey/minify/vendor/intervention/httpauth/src/config/config.php
@@ -0,0 +1,49 @@
+<?php
+
+return array(
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication type
+ |--------------------------------------------------------------------------
+ |
+ | Intervention Httpauth supports "basic" and "digest" authentication
+ | implementations. "Basic" is the simplest technique, while "Digest" applies
+ | hash functions to the password before sending it over the network.
+ |
+ | Supported: "basic", "digest"
+ |
+ */
+ 'type' => 'basic',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication realm
+ |--------------------------------------------------------------------------
+ |
+ | Clients must authenticate itself to each realm.
+ |
+ */
+ 'realm' => 'Secured',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Authentication username
+ |--------------------------------------------------------------------------
+ |
+ | Username to access the secured realm in combination with a password.
+ |
+ */
+ 'username' => 'admin',
+
+ /*
+ |--------------------------------------------------------------------------
+ | Password
+ |--------------------------------------------------------------------------
+ |
+ | Password to access the secured realm in combination with the username.
+ |
+ */
+ 'password' => '1234'
+
+);