blob: 23ef5a528c719651bbd8ca7b3093d1afe7ff26d1 [file] [log] [blame]
darwineld8bef8a2014-02-11 20:13:22 +01001<?php
darwineld8bef8a2014-02-11 20:13:22 +01002defined('BASEPATH') OR exit('No direct script access allowed');
Derek Allard2067d1a2008-11-13 22:59:24 +00003
4/*
5|--------------------------------------------------------------------------
6| Base Site URL
7|--------------------------------------------------------------------------
8|
9| URL to your CodeIgniter root. Typically this will be your base URL,
10| WITH a trailing slash:
11|
12| http://example.com/
13|
Andrey Andreev0a6b0662015-10-26 15:31:38 +020014| WARNING: You MUST set this value!
15|
16| If it is not set, then CodeIgniter will try guess the protocol and path
17| your installation, but due to security concerns the hostname will be set
18| to $_SERVER['SERVER_ADDR'] if available, or localhost otherwise.
19| The auto-detection mechanism exists only for convenience during
20| development and MUST NOT be used in production!
21|
22| If you need to allow multiple domains, remember that this file is still
23| a PHP script and you can easily do that on your own.
Phil Sturgeon4df8b222010-12-15 14:23:14 +000024|
Derek Allard2067d1a2008-11-13 22:59:24 +000025*/
Andrey Andreev815ac8a2014-10-28 21:32:20 +020026$config['base_url'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000027
28/*
29|--------------------------------------------------------------------------
30| Index File
31|--------------------------------------------------------------------------
32|
33| Typically this will be your index.php file, unless you've renamed it to
34| something else. If you are using mod_rewrite to remove the page set this
35| variable so that it is blank.
36|
37*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000038$config['index_page'] = 'index.php';
Derek Allard2067d1a2008-11-13 22:59:24 +000039
40/*
41|--------------------------------------------------------------------------
42| URI PROTOCOL
43|--------------------------------------------------------------------------
44|
45| This item determines which server global should be used to retrieve the
Andrey Andreev0ae4e6c2015-02-18 21:14:55 +020046| URI string. The default setting of 'REQUEST_URI' works for most servers.
Derek Allard2067d1a2008-11-13 22:59:24 +000047| If your links do not seem to work, try one of the other delicious flavors:
48|
Andrey Andreev0ae4e6c2015-02-18 21:14:55 +020049| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
50| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
51| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
Derek Allard2067d1a2008-11-13 22:59:24 +000052|
Andrey Andreev0ae4e6c2015-02-18 21:14:55 +020053| WARNING: If you set this to 'PATH_INFO', URIs will always be URL-decoded!
Derek Allard2067d1a2008-11-13 22:59:24 +000054*/
Andrey Andreev0ae4e6c2015-02-18 21:14:55 +020055$config['uri_protocol'] = 'REQUEST_URI';
Derek Allard2067d1a2008-11-13 22:59:24 +000056
57/*
58|--------------------------------------------------------------------------
59| URL suffix
60|--------------------------------------------------------------------------
61|
62| This option allows you to add a suffix to all URLs generated by CodeIgniter.
63| For more information please see the user guide:
64|
Andrey Andreevbd202c92016-01-11 12:50:18 +020065| https://codeigniter.com/user_guide/general/urls.html
Derek Allard2067d1a2008-11-13 22:59:24 +000066*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000067$config['url_suffix'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000068
69/*
70|--------------------------------------------------------------------------
71| Default Language
72|--------------------------------------------------------------------------
73|
74| This determines which set of language files should be used. Make sure
75| there is an available translation if you intend to use something other
76| than english.
77|
78*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000079$config['language'] = 'english';
Derek Allard2067d1a2008-11-13 22:59:24 +000080
81/*
82|--------------------------------------------------------------------------
83| Default Character Set
84|--------------------------------------------------------------------------
85|
86| This determines which character set is used by default in various methods
87| that require a character set to be provided.
88|
freewil8cc0cfe2011-08-27 21:53:00 -040089| See http://php.net/htmlspecialchars for a list of supported charsets.
90|
Derek Allard2067d1a2008-11-13 22:59:24 +000091*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000092$config['charset'] = 'UTF-8';
Derek Allard2067d1a2008-11-13 22:59:24 +000093
94/*
95|--------------------------------------------------------------------------
96| Enable/Disable System Hooks
97|--------------------------------------------------------------------------
98|
Phil Sturgeon4df8b222010-12-15 14:23:14 +000099| If you would like to use the 'hooks' feature you must enable it by
Derek Jones4b9c6292011-07-01 17:40:48 -0500100| setting this variable to TRUE (boolean). See the user guide for details.
Derek Allard2067d1a2008-11-13 22:59:24 +0000101|
102*/
103$config['enable_hooks'] = FALSE;
104
Derek Allard2067d1a2008-11-13 22:59:24 +0000105/*
106|--------------------------------------------------------------------------
107| Class Extension Prefix
108|--------------------------------------------------------------------------
109|
110| This item allows you to set the filename/classname prefix when extending
Derek Jones4b9c6292011-07-01 17:40:48 -0500111| native libraries. For more information please see the user guide:
Derek Allard2067d1a2008-11-13 22:59:24 +0000112|
Andrey Andreevbd202c92016-01-11 12:50:18 +0200113| https://codeigniter.com/user_guide/general/core_classes.html
114| https://codeigniter.com/user_guide/general/creating_libraries.html
Derek Allard2067d1a2008-11-13 22:59:24 +0000115|
116*/
117$config['subclass_prefix'] = 'MY_';
118
Andrey Andreeved86ee12014-07-11 19:48:37 +0300119/*
120|--------------------------------------------------------------------------
121| Composer auto-loading
122|--------------------------------------------------------------------------
123|
124| Enabling this setting will tell CodeIgniter to look for a Composer
125| package auto-loader script in application/vendor/autoload.php.
126|
127| $config['composer_autoload'] = TRUE;
128|
129| Or if you have your vendor/ directory located somewhere else, you
130| can opt to set a specific path as well:
131|
132| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
133|
134| For more information about Composer, please visit http://getcomposer.org/
135|
136| Note: This will NOT disable or override the CodeIgniter-specific
137| autoloading (application/config/autoload.php)
138*/
139$config['composer_autoload'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000140
141/*
142|--------------------------------------------------------------------------
143| Allowed URL Characters
144|--------------------------------------------------------------------------
145|
Andrey Andreevde14aa52014-01-15 15:51:08 +0200146| This lets you specify which characters are permitted within your URLs.
147| When someone tries to submit a URL with disallowed characters they will
148| get a warning message.
Derek Allard2067d1a2008-11-13 22:59:24 +0000149|
150| As a security measure you are STRONGLY encouraged to restrict URLs to
Derek Jones4b9c6292011-07-01 17:40:48 -0500151| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
Derek Allard2067d1a2008-11-13 22:59:24 +0000152|
153| Leave blank to allow all characters -- but only if you are insane.
154|
Andrey Andreevde14aa52014-01-15 15:51:08 +0200155| The configured value is actually a regular expression character group
156| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/i
157|
Derek Allard2067d1a2008-11-13 22:59:24 +0000158| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
159|
160*/
161$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
162
Derek Allard2067d1a2008-11-13 22:59:24 +0000163/*
164|--------------------------------------------------------------------------
165| Enable Query Strings
166|--------------------------------------------------------------------------
167|
168| By default CodeIgniter uses search-engine friendly segment based URLs:
169| example.com/who/what/where/
170|
Derek Jones4b9c6292011-07-01 17:40:48 -0500171| By default CodeIgniter enables access to the $_GET array. If for some
Dan Horrigan65d603e2010-12-15 08:38:30 -0500172| reason you would like to disable it, set 'allow_get_array' to FALSE.
173|
Derek Allard2067d1a2008-11-13 22:59:24 +0000174| You can optionally enable standard query string based URLs:
175| example.com?who=me&what=something&where=here
176|
177| Options are: TRUE or FALSE (boolean)
178|
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000179| The other items let you set the query string 'words' that will
Derek Allard2067d1a2008-11-13 22:59:24 +0000180| invoke your controllers and its functions:
181| example.com/index.php?c=controller&m=function
182|
183| Please note that some of the helpers won't work as expected when
184| this feature is enabled, since CodeIgniter is designed primarily to
185| use segment based URLs.
186|
187*/
Andrey Andreev81c93472014-11-11 12:36:30 +0200188$config['allow_get_array'] = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000189$config['enable_query_strings'] = FALSE;
Andrey Andreev81c93472014-11-11 12:36:30 +0200190$config['controller_trigger'] = 'c';
191$config['function_trigger'] = 'm';
192$config['directory_trigger'] = 'd';
Derek Allard2067d1a2008-11-13 22:59:24 +0000193
194/*
195|--------------------------------------------------------------------------
196| Error Logging Threshold
197|--------------------------------------------------------------------------
198|
Derek Allard2067d1a2008-11-13 22:59:24 +0000199| You can enable error logging by setting a threshold over zero. The
200| threshold determines what gets logged. Threshold options are:
201|
202| 0 = Disables logging, Error logging TURNED OFF
203| 1 = Error Messages (including PHP errors)
204| 2 = Debug Messages
205| 3 = Informational Messages
206| 4 = All Messages
207|
Andrey Andreev43ba5a22015-03-01 18:17:28 +0200208| You can also pass an array with threshold levels to show individual error types
Iban Eguia83105952012-03-27 18:18:15 +0200209|
Nithin333f9f92011-08-21 16:52:06 -0400210| array(2) = Debug Messages, without Error Messages
211|
Derek Allard2067d1a2008-11-13 22:59:24 +0000212| For a live site you'll usually only enable Errors (1) to be logged otherwise
213| your log files will fill up very fast.
214|
215*/
216$config['log_threshold'] = 0;
217
218/*
219|--------------------------------------------------------------------------
220| Error Logging Directory Path
221|--------------------------------------------------------------------------
222|
223| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200224| application/logs/ directory. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000225|
226*/
227$config['log_path'] = '';
228
229/*
230|--------------------------------------------------------------------------
Chris Passas0bd6b282013-02-13 14:16:18 -0500231| Log File Extension
232|--------------------------------------------------------------------------
233|
Andrey Andreeva107a0f2013-02-15 22:30:31 +0200234| The default filename extension for log files. The default 'php' allows for
235| protecting the log files via basic scripting, when they are to be stored
236| under a publicly accessible directory.
237|
238| Note: Leaving it blank will default to 'php'.
Chris Passas0bd6b282013-02-13 14:16:18 -0500239|
240*/
241$config['log_file_extension'] = '';
242
243/*
244|--------------------------------------------------------------------------
Andrey Andreev45965742014-08-27 20:40:11 +0300245| Log File Permissions
246|--------------------------------------------------------------------------
247|
248| The file system permissions to be applied on newly created log files.
249|
250| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
251| integer notation (i.e. 0700, 0644, etc.)
252*/
253$config['log_file_permissions'] = 0644;
254
255/*
256|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000257| Date Format for Logs
258|--------------------------------------------------------------------------
259|
260| Each item that is logged has an associated date. You can use PHP date
261| codes to set your own date formatting
262|
263*/
264$config['log_date_format'] = 'Y-m-d H:i:s';
265
266/*
267|--------------------------------------------------------------------------
vlakoff511a6b82014-04-14 14:33:55 +0200268| Error Views Directory Path
vlakoffcdf3dfa2014-04-12 07:33:42 +0200269|--------------------------------------------------------------------------
270|
271| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200272| application/views/errors/ directory. Use a full server path with trailing slash.
vlakoffcdf3dfa2014-04-12 07:33:42 +0200273|
274*/
vlakoff511a6b82014-04-14 14:33:55 +0200275$config['error_views_path'] = '';
vlakoffcdf3dfa2014-04-12 07:33:42 +0200276
277/*
278|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000279| Cache Directory Path
280|--------------------------------------------------------------------------
281|
282| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200283| application/cache/ directory. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000284|
285*/
286$config['cache_path'] = '';
287
288/*
289|--------------------------------------------------------------------------
Andrey Andreeva704aa72014-12-04 12:37:07 +0200290| Cache Include Query String
291|--------------------------------------------------------------------------
292|
Andrey Andreev4a4cbb32015-07-15 17:39:44 +0300293| Whether to take the URL query string into consideration when generating
294| output cache files. Valid options are:
295|
296| FALSE = Disabled
297| TRUE = Enabled, take all query parameters into account.
298| Please be aware that this may result in numerous cache
299| files generated for the same page over and over again.
300| array('q') = Enabled, but only take into account the specified list
301| of query parameters.
Andrey Andreeva704aa72014-12-04 12:37:07 +0200302|
303*/
304$config['cache_query_string'] = FALSE;
305
306/*
307|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000308| Encryption Key
309|--------------------------------------------------------------------------
310|
Andrey Andreeva7e24ec2015-01-21 11:18:32 +0200311| If you use the Encryption class, you must set an encryption key.
Andrey Andreev9e82b0d2015-01-19 13:26:46 +0200312| See the user guide for more info.
Iban Eguia83105952012-03-27 18:18:15 +0200313|
Andrey Andreevbd202c92016-01-11 12:50:18 +0200314| https://codeigniter.com/user_guide/libraries/encryption.html
Derek Allard2067d1a2008-11-13 22:59:24 +0000315|
316*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000317$config['encryption_key'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000318
319/*
320|--------------------------------------------------------------------------
321| Session Variables
322|--------------------------------------------------------------------------
323|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300324| 'sess_driver'
325|
Andrey Andreeva8f29f92014-11-10 18:55:55 +0200326| The storage driver to use: files, database, redis, memcached
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300327|
328| 'sess_cookie_name'
329|
330| The session cookie name, must contain only [0-9a-z_-] characters
331|
332| 'sess_expiration'
333|
334| The number of SECONDS you want the session to last.
335| Setting to 0 (zero) means expire when the browser is closed.
336|
337| 'sess_save_path'
338|
Calvin Tamd2d21e82015-07-04 12:54:51 -0700339| The location to save sessions to, driver dependent.
Andrey Andreev973a6542015-01-19 13:25:24 +0200340|
Andrey Andreev1bd697c2015-02-02 14:07:57 +0200341| For the 'files' driver, it's a path to a writable directory.
Andrey Andreevdd8c0ed2015-03-14 17:01:36 +0200342| WARNING: Only absolute paths are supported!
343|
Andrey Andreev973a6542015-01-19 13:25:24 +0200344| For the 'database' driver, it's a table name.
345| Please read up the manual for the format with other session drivers.
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300346|
Andrey Andreev1bd697c2015-02-02 14:07:57 +0200347| IMPORTANT: You are REQUIRED to set a valid save path!
348|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300349| 'sess_match_ip'
350|
351| Whether to match the user's IP address when reading the session data.
352|
Andrey Andreev20573bd2015-09-01 12:46:06 +0300353| WARNING: If you're using the database driver, don't forget to update
354| your session table's PRIMARY KEY when changing this setting.
355|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300356| 'sess_time_to_update'
357|
358| How many seconds between CI regenerating the session ID.
359|
Andrey Andreev4e7f85a2015-02-07 19:33:48 +0200360| 'sess_regenerate_destroy'
Andrey Andreev789b1fe2015-02-07 19:30:30 +0200361|
362| Whether to destroy session data associated with the old session ID
363| when auto-regenerating the session ID. When set to FALSE, the data
364| will be later deleted by the garbage collector.
365|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300366| Other session cookie settings are shared with the rest of the application,
Andrey Andreev973a6542015-01-19 13:25:24 +0200367| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.
Derek Allard2067d1a2008-11-13 22:59:24 +0000368|
369*/
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300370$config['sess_driver'] = 'files';
371$config['sess_cookie_name'] = 'ci_session';
372$config['sess_expiration'] = 7200;
373$config['sess_save_path'] = NULL;
374$config['sess_match_ip'] = FALSE;
375$config['sess_time_to_update'] = 300;
Andrey Andreev789b1fe2015-02-07 19:30:30 +0200376$config['sess_regenerate_destroy'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000377
378/*
379|--------------------------------------------------------------------------
380| Cookie Related Variables
381|--------------------------------------------------------------------------
382|
Andrey Andreev973a6542015-01-19 13:25:24 +0200383| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions
384| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
385| 'cookie_path' = Typically will be a forward slash
386| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists.
Iban Eguia83105952012-03-27 18:18:15 +0200387| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
Derek Allard2067d1a2008-11-13 22:59:24 +0000388|
Andrey Andreev973a6542015-01-19 13:25:24 +0200389| Note: These settings (with the exception of 'cookie_prefix' and
390| 'cookie_httponly') will also affect sessions.
391|
Derek Allard2067d1a2008-11-13 22:59:24 +0000392*/
Dumk0d55f7492012-07-03 11:21:45 +0300393$config['cookie_prefix'] = '';
394$config['cookie_domain'] = '';
395$config['cookie_path'] = '/';
Robin Sowelld6d9f452011-02-11 15:31:27 -0500396$config['cookie_secure'] = FALSE;
freewil4ad0fd82012-03-13 22:37:42 -0400397$config['cookie_httponly'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000398
399/*
400|--------------------------------------------------------------------------
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200401| Standardize newlines
402|--------------------------------------------------------------------------
403|
404| Determines whether to standardize newline characters in input data,
Calvin Tamd2d21e82015-07-04 12:54:51 -0700405| meaning to replace \r\n, \r, \n occurrences with the PHP_EOL value.
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200406|
407| This is particularly useful for portability between UNIX-based OSes,
408| (usually \n) and Windows (\r\n).
409|
410*/
Andrey Andreevaeed15e2014-04-14 16:56:23 +0300411$config['standardize_newlines'] = FALSE;
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200412
413/*
414|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000415| Global XSS Filtering
416|--------------------------------------------------------------------------
417|
418| Determines whether the XSS filter is always active when GET, POST or
419| COOKIE data is encountered
420|
Andrey Andreev9187ed32015-02-28 19:54:17 +0200421| WARNING: This feature is DEPRECATED and currently available only
422| for backwards compatibility purposes!
423|
Derek Allard2067d1a2008-11-13 22:59:24 +0000424*/
425$config['global_xss_filtering'] = FALSE;
426
427/*
428|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500429| Cross Site Request Forgery
Derek Allard958543a2010-07-22 14:10:26 -0400430|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500431| Enables a CSRF cookie token to be set. When set to TRUE, token will be
Derek Allard958543a2010-07-22 14:10:26 -0400432| checked on a submitted form. If you are accepting user data, it is strongly
433| recommended CSRF protection be enabled.
Eric Barnes9805ecc2011-01-16 23:35:16 -0500434|
435| 'csrf_token_name' = The token name
436| 'csrf_cookie_name' = The cookie name
437| 'csrf_expire' = The number in seconds the token should expire.
RS714b2e9fe2011-12-31 16:02:50 -0200438| 'csrf_regenerate' = Regenerate token on every submission
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100439| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
Derek Allard958543a2010-07-22 14:10:26 -0400440*/
441$config['csrf_protection'] = FALSE;
Eric Barnes9805ecc2011-01-16 23:35:16 -0500442$config['csrf_token_name'] = 'csrf_test_name';
443$config['csrf_cookie_name'] = 'csrf_cookie_name';
444$config['csrf_expire'] = 7200;
RS714b2e9fe2011-12-31 16:02:50 -0200445$config['csrf_regenerate'] = TRUE;
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100446$config['csrf_exclude_uris'] = array();
Derek Allard958543a2010-07-22 14:10:26 -0400447
448/*
449|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000450| Output Compression
451|--------------------------------------------------------------------------
452|
Derek Jones4b9c6292011-07-01 17:40:48 -0500453| Enables Gzip output compression for faster page loads. When enabled,
Derek Allard2067d1a2008-11-13 22:59:24 +0000454| the output class will test whether your server supports Gzip.
455| Even if it does, however, not all browsers support compression
456| so enable only if you are reasonably sure your visitors can handle it.
457|
Andrey Andreev155ee722014-01-10 15:50:54 +0200458| Only used if zlib.output_compression is turned off in your php.ini.
459| Please do not use it together with httpd-level output compression.
460|
Derek Jones4b9c6292011-07-01 17:40:48 -0500461| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
Derek Allard2067d1a2008-11-13 22:59:24 +0000462| means you are prematurely outputting something to your browser. It could
Derek Jones4b9c6292011-07-01 17:40:48 -0500463| even be a line of whitespace at the end of one of your scripts. For
Derek Allard2067d1a2008-11-13 22:59:24 +0000464| compression to work, nothing can be sent before the output buffer is called
Derek Jones4b9c6292011-07-01 17:40:48 -0500465| by the output class. Do not 'echo' any values with compression enabled.
Derek Allard2067d1a2008-11-13 22:59:24 +0000466|
467*/
468$config['compress_output'] = FALSE;
469
470/*
471|--------------------------------------------------------------------------
472| Master Time Reference
473|--------------------------------------------------------------------------
474|
Andrey Andreevd163e0b2012-06-14 03:09:53 +0300475| Options are 'local' or any PHP supported timezone. This preference tells
476| the system whether to use your server's local time as the master 'now'
477| reference, or convert it to the configured one timezone. See the 'date
Iban Eguia74009652012-06-13 22:57:50 +0200478| helper' page of the user guide for information regarding date handling.
Derek Allard2067d1a2008-11-13 22:59:24 +0000479|
480*/
481$config['time_reference'] = 'local';
482
Derek Allard2067d1a2008-11-13 22:59:24 +0000483/*
484|--------------------------------------------------------------------------
485| Rewrite PHP Short Tags
486|--------------------------------------------------------------------------
487|
488| If your PHP installation does not have short tag support enabled CI
489| can rewrite the tags on-the-fly, enabling you to utilize that syntax
Derek Jones4b9c6292011-07-01 17:40:48 -0500490| in your view files. Options are TRUE or FALSE (boolean)
Derek Allard2067d1a2008-11-13 22:59:24 +0000491|
Andrey Andreev07355da2015-07-22 12:46:16 +0300492| Note: You need to have eval() enabled for this to work.
493|
Derek Allard2067d1a2008-11-13 22:59:24 +0000494*/
495$config['rewrite_short_tags'] = FALSE;
496
Derek Jonesc5972282009-02-04 21:40:20 +0000497/*
498|--------------------------------------------------------------------------
499| Reverse Proxy IPs
500|--------------------------------------------------------------------------
501|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300502| If your server is behind a reverse proxy, you must whitelist the proxy
503| IP addresses from which CodeIgniter should trust headers such as
504| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
505| the visitor's IP address.
Derek Jonesc5972282009-02-04 21:40:20 +0000506|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300507| You can use both an array or a comma-separated list of proxy addresses,
508| as well as specifying whole subnets. Here are a few examples:
509|
510| Comma-separated: '10.0.1.200,192.168.5.0/24'
511| Array: array('10.0.1.200', '192.168.5.0/24')
Derek Jonesc5972282009-02-04 21:40:20 +0000512*/
513$config['proxy_ips'] = '';