session.php 3.2 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| Session Driver
	|--------------------------------------------------------------------------
	|
10 11 12 13
	| The name of the session driver used by your application. Since HTTP is
	| stateless, sessions are used to simulate "state" across requests made
	| by the same user of your application. In other words, it's how an
	| application knows who the heck you are.
14
	|
15
	| Drivers: 'cookie', 'file', 'database', 'memcached', 'apc', 'redis'.
16 17 18
	|
	*/

19
	'driver' => 'cookie',
20 21 22 23 24 25

	/*
	|--------------------------------------------------------------------------
	| Session Database
	|--------------------------------------------------------------------------
	|
26 27 28
	| The database table on which the session should be stored. It probably
	| goes without saying that this option only matters if you are using
	| the super slick database session driver.
29 30 31 32 33 34 35 36 37 38 39 40
	|
	*/

	'table' => 'sessions',

	/*
	|--------------------------------------------------------------------------
	| Session Garbage Collection Probability
	|--------------------------------------------------------------------------
	|
	| Some session drivers require the manual clean-up of expired sessions.
	| This option specifies the probability of session garbage collection
Taylor Otwell committed
41
	| occuring for any given request to the application. 
42
	|
43 44
	| For example, the default value states that garbage collection has a
	| 2% chance of occuring for any given request to the application.
Taylor Otwell committed
45
	| Feel free to tune this to your requirements.
46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74
	|
	*/

	'sweepage' => array(2, 100),

	/*
	|--------------------------------------------------------------------------
	| Session Lifetime
	|--------------------------------------------------------------------------
	|
	| The number of minutes a session can be idle before expiring.
	|
	*/

	'lifetime' => 60,

	/*
	|--------------------------------------------------------------------------
	| Session Expiration On Close
	|--------------------------------------------------------------------------
	|
	| Determines if the session should expire when the user's web browser closes.
	|
	*/

	'expire_on_close' => false,

	/*
	|--------------------------------------------------------------------------
75 76 77 78 79 80 81 82 83 84 85
	| Session Cookie Name
	|--------------------------------------------------------------------------
	|
	| The name that should be given to the session cookie.
	|
	*/

	'cookie' => 'laravel_session',

	/*
	|--------------------------------------------------------------------------
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
	| Session Cookie Path
	|--------------------------------------------------------------------------
	|
	| The path for which the session cookie is available.
	|
	*/

	'path' => '/',

	/*
	|--------------------------------------------------------------------------
	| Session Cookie Domain
	|--------------------------------------------------------------------------
	|
	| The domain for which the session cookie is available.
	|
	*/

	'domain' => null,

106 107 108 109 110 111 112 113 114 115 116
	/*
	|--------------------------------------------------------------------------
	| HTTPS Only Session Cookie
	|--------------------------------------------------------------------------
	|
	| Determines if the cookie should only be sent over HTTPS.
	|
	*/

	'secure' => false,

117
);