session.php 2.65 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<?php

return array(

	/*
	|--------------------------------------------------------------------------
	| Session Driver
	|--------------------------------------------------------------------------
	|
	| The name of the session driver for your application.
	|
	| Since HTTP is stateless, sessions are used to maintain "state" across
	| multiple requests from the same user of your application.
	|
15
	| Supported Drivers: 'file', 'db', 'memcached', 'apc'.
16 17 18
	|
	*/

19
	'driver' => 'file',
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 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 75 76 77 78 79 80 81 82 83 84 85 86 87 88

	/*
	|--------------------------------------------------------------------------
	| Session Database
	|--------------------------------------------------------------------------
	|
	| The database table on which the session should be stored. 
	|
	| If you are not using database based sessions, don't worry about this.
	|
	*/

	'table' => 'sessions',

	/*
	|--------------------------------------------------------------------------
	| Session Lifetime
	|--------------------------------------------------------------------------
	|
	| How many minutes can a session be idle before expiring?
	|
	*/

	'lifetime' => 60,

	/*
	|--------------------------------------------------------------------------
	| Session Expiration On Close
	|--------------------------------------------------------------------------
	|
	| Should the session expire when the user's web browser closes?
	|
	*/

	'expire_on_close' => false,

	/*
	|--------------------------------------------------------------------------
	| 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,

	/*
	|--------------------------------------------------------------------------
	| Session Cookie HTTPS
	|--------------------------------------------------------------------------
	|
	| Should the session cookie only be transported over HTTPS?
	|
	*/

	'https' => false,

89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	/*
	|--------------------------------------------------------------------------
	| HTTP Only Session Cookie
	|--------------------------------------------------------------------------
	|
	| Should the session cookie only be accessible over HTTP?
	|
	| Note: The intention of the "HTTP Only" option is to keep cookies from
	|       being accessed by client-side scripting languages. However, this
	|       setting should not be viewed as providing total XSS protection.
	|
	*/

	'http_only' => false,

104
);