summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/intervention/httpauth/src/config/config.php
blob: 0655eab3dfba1be9d107fd802f7ca90329512e32 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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'

);