Merge pull request #29 from kohana/3.3/bug/travis-composer-no-interaction
[kohana-auth.git] / guide / auth / config.md
blobe411fa06d78f0b1cd0f5c2941face346ec3fbeeb
1 # Configuration
3 The default configuration file is located in `MODPATH/auth/config/auth.php`. You should copy this file to `APPPATH/config/auth.php` and make changes there, in keeping with the [cascading filesystem](../kohana/files).
5 [Config merging](../kohana/config#config-merging) allows these default configuration settings to apply if you don't overwrite them in your application configuration file.
7 Name | Type | Default | Description
8 -----|------|---------|------------
9 driver | `string` | file | The name of the auth driver to use.
10 hash_method | `string` | sha256 | The hashing function to use on the passwords.
11 hash_key | `string` | NULL | The key to use when hashing the password.
12 session_type | `string` | [Session::$default] | The type of session to use when storing the auth user.
13 session_key | `string` | auth_user | The name of the session variable used to save the user.