session.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Session Driver
  6. |--------------------------------------------------------------------------
  7. |
  8. | The name of the session driver for your application.
  9. |
  10. | Since HTTP is stateless, sessions are used to maintain "state" across
  11. | multiple requests from the same user of your application.
  12. |
  13. | Supported Drivers: 'file', 'db', 'memcached'.
  14. |
  15. */
  16. 'driver' => '',
  17. /*
  18. |--------------------------------------------------------------------------
  19. | Session Database
  20. |--------------------------------------------------------------------------
  21. |
  22. | The database table on which the session should be stored.
  23. |
  24. | If you are not using database based sessions, don't worry about this.
  25. |
  26. */
  27. 'table' => 'sessions',
  28. /*
  29. |--------------------------------------------------------------------------
  30. | Session Lifetime
  31. |--------------------------------------------------------------------------
  32. |
  33. | How many minutes can a session be idle before expiring?
  34. |
  35. */
  36. 'lifetime' => 60,
  37. /*
  38. |--------------------------------------------------------------------------
  39. | Session Expiration On Close
  40. |--------------------------------------------------------------------------
  41. |
  42. | Should the session expire when the user's web browser closes?
  43. |
  44. */
  45. 'expire_on_close' => false,
  46. /*
  47. |--------------------------------------------------------------------------
  48. | Session Cookie Path
  49. |--------------------------------------------------------------------------
  50. |
  51. | The path for which the session cookie is available.
  52. |
  53. */
  54. 'path' => '/',
  55. /*
  56. |--------------------------------------------------------------------------
  57. | Session Cookie Domain
  58. |--------------------------------------------------------------------------
  59. |
  60. | The domain for which the session cookie is available.
  61. |
  62. */
  63. 'domain' => null,
  64. /*
  65. |--------------------------------------------------------------------------
  66. | Session Cookie HTTPS
  67. |--------------------------------------------------------------------------
  68. |
  69. | Should the session cookie only be transported over HTTPS?
  70. |
  71. */
  72. 'https' => false,
  73. );