application.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <?php
  2. return array(
  3. /*
  4. |--------------------------------------------------------------------------
  5. | Application URL
  6. |--------------------------------------------------------------------------
  7. |
  8. | The URL used to access your application. No trailing slash.
  9. |
  10. */
  11. 'url' => 'http://localhost',
  12. /*
  13. |--------------------------------------------------------------------------
  14. | Application Index
  15. |--------------------------------------------------------------------------
  16. |
  17. | If you are including the "index.php" in your URLs, you can ignore this.
  18. |
  19. | However, if you are using mod_rewrite or something similar to get
  20. | cleaner URLs, set this option to an empty string.
  21. |
  22. */
  23. 'index' => 'index.php',
  24. /*
  25. |--------------------------------------------------------------------------
  26. | Application Language
  27. |--------------------------------------------------------------------------
  28. |
  29. | The default language of your application. This language will be used by
  30. | Lang library as the default language when doing string localization.
  31. |
  32. */
  33. 'language' => 'en',
  34. /*
  35. |--------------------------------------------------------------------------
  36. | Application Timezone
  37. |--------------------------------------------------------------------------
  38. |
  39. | The default timezone of your application. This timezone will be used when
  40. | Laravel needs a date, such as when writing to a log file.
  41. |
  42. */
  43. 'timezone' => 'UTC',
  44. /*
  45. |--------------------------------------------------------------------------
  46. | Application Character Encoding
  47. |--------------------------------------------------------------------------
  48. |
  49. | The default character encoding used by your application. This is the
  50. | character encoding that will be used by the Str, Text, and Form classes.
  51. |
  52. */
  53. 'encoding' => 'UTF-8',
  54. /*
  55. |--------------------------------------------------------------------------
  56. | Auto-Loaded Packages
  57. |--------------------------------------------------------------------------
  58. |
  59. | The packages that should be auto-loaded each time Laravel handles a
  60. | request. These should generally be packages that you use on almost every
  61. | request to your application.
  62. |
  63. | Each package specified here will be bootstrapped and can be conveniently
  64. | used by your application's routes, models, and libraries.
  65. |
  66. | Note: The package names in this array should correspond to a package
  67. | directory in application/packages.
  68. |
  69. */
  70. 'packages' => array(),
  71. /*
  72. |--------------------------------------------------------------------------
  73. | Application Key
  74. |--------------------------------------------------------------------------
  75. |
  76. | Your application key should be a 32 character string that is totally
  77. | random and secret. This key is used by the encryption class to generate
  78. | secure, encrypted strings.
  79. |
  80. */
  81. 'key' => '',
  82. /*
  83. |--------------------------------------------------------------------------
  84. | SSL Link Generation
  85. |--------------------------------------------------------------------------
  86. |
  87. | Many sites use SSL to protect their users data. However, you may not
  88. | always be able to use SSL on your development machine, meaning all HTTPS
  89. | will be broken during development.
  90. |
  91. | For this reason, you may wish to disable the generation of HTTPS links
  92. | throughout your application. This option does just that. All attempts to
  93. | generate HTTPS links will generate regular HTTP links instead.
  94. |
  95. */
  96. 'ssl' => true,
  97. );