blob: 1e399590be3735ff51006f91ebea87aa97a9417c [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 Andreev815ac8a2014-10-28 21:32:20 +020014| If this is not set then CodeIgniter will try guess the protocol, domain
15| and path to your installation. However, you should always configure this
16| explicitly and never rely on auto-guessing, especially in production
17| environments.
Phil Sturgeon4df8b222010-12-15 14:23:14 +000018|
Derek Allard2067d1a2008-11-13 22:59:24 +000019*/
Andrey Andreev815ac8a2014-10-28 21:32:20 +020020$config['base_url'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000021
22/*
23|--------------------------------------------------------------------------
24| Index File
25|--------------------------------------------------------------------------
26|
27| Typically this will be your index.php file, unless you've renamed it to
28| something else. If you are using mod_rewrite to remove the page set this
29| variable so that it is blank.
30|
31*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000032$config['index_page'] = 'index.php';
Derek Allard2067d1a2008-11-13 22:59:24 +000033
34/*
35|--------------------------------------------------------------------------
36| URI PROTOCOL
37|--------------------------------------------------------------------------
38|
39| This item determines which server global should be used to retrieve the
Derek Jones4b9c6292011-07-01 17:40:48 -050040| URI string. The default setting of 'AUTO' works for most servers.
Derek Allard2067d1a2008-11-13 22:59:24 +000041| If your links do not seem to work, try one of the other delicious flavors:
42|
Andrey Andreevf2b19fe2012-10-31 16:16:24 +020043| 'AUTO' Default - auto detects
44| 'CLI' or 'argv' Uses $_SERVER['argv'] (for php-cli only)
Andrey Andreevf2b19fe2012-10-31 16:16:24 +020045| 'PATH_INFO' Uses $_SERVER['PATH_INFO']
Andrey Andreev3b72eb52012-11-01 00:45:26 +020046| 'REQUEST_URI' Uses $_SERVER['REQUEST_URI']
Andrey Andreevf2b19fe2012-10-31 16:16:24 +020047| 'QUERY_STRING' Uses $_SERVER['QUERY_STRING']
Derek Allard2067d1a2008-11-13 22:59:24 +000048|
49*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000050$config['uri_protocol'] = 'AUTO';
Derek Allard2067d1a2008-11-13 22:59:24 +000051
52/*
53|--------------------------------------------------------------------------
54| URL suffix
55|--------------------------------------------------------------------------
56|
57| This option allows you to add a suffix to all URLs generated by CodeIgniter.
58| For more information please see the user guide:
59|
60| http://codeigniter.com/user_guide/general/urls.html
61*/
62
Phil Sturgeon4df8b222010-12-15 14:23:14 +000063$config['url_suffix'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +000064
65/*
66|--------------------------------------------------------------------------
67| Default Language
68|--------------------------------------------------------------------------
69|
70| This determines which set of language files should be used. Make sure
71| there is an available translation if you intend to use something other
72| than english.
73|
74*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000075$config['language'] = 'english';
Derek Allard2067d1a2008-11-13 22:59:24 +000076
77/*
78|--------------------------------------------------------------------------
79| Default Character Set
80|--------------------------------------------------------------------------
81|
82| This determines which character set is used by default in various methods
83| that require a character set to be provided.
84|
freewil8cc0cfe2011-08-27 21:53:00 -040085| See http://php.net/htmlspecialchars for a list of supported charsets.
86|
Derek Allard2067d1a2008-11-13 22:59:24 +000087*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +000088$config['charset'] = 'UTF-8';
Derek Allard2067d1a2008-11-13 22:59:24 +000089
90/*
91|--------------------------------------------------------------------------
92| Enable/Disable System Hooks
93|--------------------------------------------------------------------------
94|
Phil Sturgeon4df8b222010-12-15 14:23:14 +000095| If you would like to use the 'hooks' feature you must enable it by
Derek Jones4b9c6292011-07-01 17:40:48 -050096| setting this variable to TRUE (boolean). See the user guide for details.
Derek Allard2067d1a2008-11-13 22:59:24 +000097|
98*/
99$config['enable_hooks'] = FALSE;
100
Derek Allard2067d1a2008-11-13 22:59:24 +0000101/*
102|--------------------------------------------------------------------------
103| Class Extension Prefix
104|--------------------------------------------------------------------------
105|
106| This item allows you to set the filename/classname prefix when extending
Derek Jones4b9c6292011-07-01 17:40:48 -0500107| native libraries. For more information please see the user guide:
Derek Allard2067d1a2008-11-13 22:59:24 +0000108|
109| http://codeigniter.com/user_guide/general/core_classes.html
110| http://codeigniter.com/user_guide/general/creating_libraries.html
111|
112*/
113$config['subclass_prefix'] = 'MY_';
114
Andrey Andreeved86ee12014-07-11 19:48:37 +0300115/*
116|--------------------------------------------------------------------------
117| Composer auto-loading
118|--------------------------------------------------------------------------
119|
120| Enabling this setting will tell CodeIgniter to look for a Composer
121| package auto-loader script in application/vendor/autoload.php.
122|
123| $config['composer_autoload'] = TRUE;
124|
125| Or if you have your vendor/ directory located somewhere else, you
126| can opt to set a specific path as well:
127|
128| $config['composer_autoload'] = '/path/to/vendor/autoload.php';
129|
130| For more information about Composer, please visit http://getcomposer.org/
131|
132| Note: This will NOT disable or override the CodeIgniter-specific
133| autoloading (application/config/autoload.php)
134*/
135$config['composer_autoload'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000136
137/*
138|--------------------------------------------------------------------------
139| Allowed URL Characters
140|--------------------------------------------------------------------------
141|
Andrey Andreevde14aa52014-01-15 15:51:08 +0200142| This lets you specify which characters are permitted within your URLs.
143| When someone tries to submit a URL with disallowed characters they will
144| get a warning message.
Derek Allard2067d1a2008-11-13 22:59:24 +0000145|
146| As a security measure you are STRONGLY encouraged to restrict URLs to
Derek Jones4b9c6292011-07-01 17:40:48 -0500147| as few characters as possible. By default only these are allowed: a-z 0-9~%.:_-
Derek Allard2067d1a2008-11-13 22:59:24 +0000148|
149| Leave blank to allow all characters -- but only if you are insane.
150|
Andrey Andreevde14aa52014-01-15 15:51:08 +0200151| The configured value is actually a regular expression character group
152| and it will be executed as: ! preg_match('/^[<permitted_uri_chars>]+$/i
153|
Derek Allard2067d1a2008-11-13 22:59:24 +0000154| DO NOT CHANGE THIS UNLESS YOU FULLY UNDERSTAND THE REPERCUSSIONS!!
155|
156*/
157$config['permitted_uri_chars'] = 'a-z 0-9~%.:_\-';
158
159
160/*
161|--------------------------------------------------------------------------
162| Enable Query Strings
163|--------------------------------------------------------------------------
164|
165| By default CodeIgniter uses search-engine friendly segment based URLs:
166| example.com/who/what/where/
167|
Derek Jones4b9c6292011-07-01 17:40:48 -0500168| By default CodeIgniter enables access to the $_GET array. If for some
Dan Horrigan65d603e2010-12-15 08:38:30 -0500169| reason you would like to disable it, set 'allow_get_array' to FALSE.
170|
Derek Allard2067d1a2008-11-13 22:59:24 +0000171| You can optionally enable standard query string based URLs:
172| example.com?who=me&what=something&where=here
173|
174| Options are: TRUE or FALSE (boolean)
175|
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000176| The other items let you set the query string 'words' that will
Derek Allard2067d1a2008-11-13 22:59:24 +0000177| invoke your controllers and its functions:
178| example.com/index.php?c=controller&m=function
179|
180| Please note that some of the helpers won't work as expected when
181| this feature is enabled, since CodeIgniter is designed primarily to
182| use segment based URLs.
183|
184*/
Andrey Andreev81c93472014-11-11 12:36:30 +0200185$config['allow_get_array'] = TRUE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000186$config['enable_query_strings'] = FALSE;
Andrey Andreev81c93472014-11-11 12:36:30 +0200187$config['controller_trigger'] = 'c';
188$config['function_trigger'] = 'm';
189$config['directory_trigger'] = 'd';
Derek Allard2067d1a2008-11-13 22:59:24 +0000190
191/*
192|--------------------------------------------------------------------------
193| Error Logging Threshold
194|--------------------------------------------------------------------------
195|
Barry Mienydd671972010-10-04 16:33:58 +0200196| If you have enabled error logging, you can set an error threshold to
Derek Allard2067d1a2008-11-13 22:59:24 +0000197| determine what gets logged. Threshold options are:
198| You can enable error logging by setting a threshold over zero. The
199| threshold determines what gets logged. Threshold options are:
200|
201| 0 = Disables logging, Error logging TURNED OFF
202| 1 = Error Messages (including PHP errors)
203| 2 = Debug Messages
204| 3 = Informational Messages
205| 4 = All Messages
206|
Nithin333f9f92011-08-21 16:52:06 -0400207| You can also pass in a array with threshold levels to show individual error types
Iban Eguia83105952012-03-27 18:18:15 +0200208|
Nithin333f9f92011-08-21 16:52:06 -0400209| array(2) = Debug Messages, without Error Messages
210|
Derek Allard2067d1a2008-11-13 22:59:24 +0000211| For a live site you'll usually only enable Errors (1) to be logged otherwise
212| your log files will fill up very fast.
213|
214*/
215$config['log_threshold'] = 0;
216
217/*
218|--------------------------------------------------------------------------
219| Error Logging Directory Path
220|--------------------------------------------------------------------------
221|
222| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200223| application/logs/ directory. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000224|
225*/
226$config['log_path'] = '';
227
228/*
229|--------------------------------------------------------------------------
Chris Passas0bd6b282013-02-13 14:16:18 -0500230| Log File Extension
231|--------------------------------------------------------------------------
232|
Andrey Andreeva107a0f2013-02-15 22:30:31 +0200233| The default filename extension for log files. The default 'php' allows for
234| protecting the log files via basic scripting, when they are to be stored
235| under a publicly accessible directory.
236|
237| Note: Leaving it blank will default to 'php'.
Chris Passas0bd6b282013-02-13 14:16:18 -0500238|
239*/
240$config['log_file_extension'] = '';
241
242/*
243|--------------------------------------------------------------------------
Andrey Andreev45965742014-08-27 20:40:11 +0300244| Log File Permissions
245|--------------------------------------------------------------------------
246|
247| The file system permissions to be applied on newly created log files.
248|
249| IMPORTANT: This MUST be an integer (no quotes) and you MUST use octal
250| integer notation (i.e. 0700, 0644, etc.)
251*/
252$config['log_file_permissions'] = 0644;
253
254/*
255|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000256| Date Format for Logs
257|--------------------------------------------------------------------------
258|
259| Each item that is logged has an associated date. You can use PHP date
260| codes to set your own date formatting
261|
262*/
263$config['log_date_format'] = 'Y-m-d H:i:s';
264
265/*
266|--------------------------------------------------------------------------
vlakoff511a6b82014-04-14 14:33:55 +0200267| Error Views Directory Path
vlakoffcdf3dfa2014-04-12 07:33:42 +0200268|--------------------------------------------------------------------------
269|
270| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200271| application/views/errors/ directory. Use a full server path with trailing slash.
vlakoffcdf3dfa2014-04-12 07:33:42 +0200272|
273*/
vlakoff511a6b82014-04-14 14:33:55 +0200274$config['error_views_path'] = '';
vlakoffcdf3dfa2014-04-12 07:33:42 +0200275
276/*
277|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000278| Cache Directory Path
279|--------------------------------------------------------------------------
280|
281| Leave this BLANK unless you would like to set something other than the default
vlakoff6cf456d2014-04-14 14:38:29 +0200282| application/cache/ directory. Use a full server path with trailing slash.
Derek Allard2067d1a2008-11-13 22:59:24 +0000283|
284*/
285$config['cache_path'] = '';
286
287/*
288|--------------------------------------------------------------------------
Andrey Andreeva704aa72014-12-04 12:37:07 +0200289| Cache Include Query String
290|--------------------------------------------------------------------------
291|
292| Set this to TRUE if you want to use different cache files depending on the
293| URL query string. Please be aware this might result in numerous cache files.
294|
295*/
296$config['cache_query_string'] = FALSE;
297
298/*
299|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000300| Encryption Key
301|--------------------------------------------------------------------------
302|
Andrey Andreeva7e24ec2015-01-21 11:18:32 +0200303| If you use the Encryption class, you must set an encryption key.
Andrey Andreev9e82b0d2015-01-19 13:26:46 +0200304| See the user guide for more info.
Iban Eguia83105952012-03-27 18:18:15 +0200305|
Kyle Ridolfo6a33e552011-10-27 15:40:06 -0300306| http://codeigniter.com/user_guide/libraries/encryption.html
Derek Allard2067d1a2008-11-13 22:59:24 +0000307|
308*/
Phil Sturgeon4df8b222010-12-15 14:23:14 +0000309$config['encryption_key'] = '';
Derek Allard2067d1a2008-11-13 22:59:24 +0000310
311/*
312|--------------------------------------------------------------------------
313| Session Variables
314|--------------------------------------------------------------------------
315|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300316| 'sess_driver'
317|
Andrey Andreeva8f29f92014-11-10 18:55:55 +0200318| The storage driver to use: files, database, redis, memcached
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300319|
320| 'sess_cookie_name'
321|
322| The session cookie name, must contain only [0-9a-z_-] characters
323|
324| 'sess_expiration'
325|
326| The number of SECONDS you want the session to last.
327| Setting to 0 (zero) means expire when the browser is closed.
328|
329| 'sess_save_path'
330|
Andrey Andreev1bd697c2015-02-02 14:07:57 +0200331| The location to save sessions to, driver dependant.
Andrey Andreev973a6542015-01-19 13:25:24 +0200332|
Andrey Andreev1bd697c2015-02-02 14:07:57 +0200333| For the 'files' driver, it's a path to a writable directory.
Andrey Andreev973a6542015-01-19 13:25:24 +0200334| For the 'database' driver, it's a table name.
335| Please read up the manual for the format with other session drivers.
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300336|
Andrey Andreev1bd697c2015-02-02 14:07:57 +0200337| IMPORTANT: You are REQUIRED to set a valid save path!
338|
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300339| 'sess_match_ip'
340|
341| Whether to match the user's IP address when reading the session data.
342|
343| 'sess_time_to_update'
344|
345| How many seconds between CI regenerating the session ID.
346|
347| Other session cookie settings are shared with the rest of the application,
Andrey Andreev973a6542015-01-19 13:25:24 +0200348| except for 'cookie_prefix' and 'cookie_httponly', which are ignored here.
Derek Allard2067d1a2008-11-13 22:59:24 +0000349|
350*/
Andrey Andreevdfb39be2014-10-06 01:50:14 +0300351$config['sess_driver'] = 'files';
352$config['sess_cookie_name'] = 'ci_session';
353$config['sess_expiration'] = 7200;
354$config['sess_save_path'] = NULL;
355$config['sess_match_ip'] = FALSE;
356$config['sess_time_to_update'] = 300;
Derek Allard2067d1a2008-11-13 22:59:24 +0000357
358/*
359|--------------------------------------------------------------------------
360| Cookie Related Variables
361|--------------------------------------------------------------------------
362|
Andrey Andreev973a6542015-01-19 13:25:24 +0200363| 'cookie_prefix' = Set a cookie name prefix if you need to avoid collisions
364| 'cookie_domain' = Set to .your-domain.com for site-wide cookies
365| 'cookie_path' = Typically will be a forward slash
366| 'cookie_secure' = Cookie will only be set if a secure HTTPS connection exists.
Iban Eguia83105952012-03-27 18:18:15 +0200367| 'cookie_httponly' = Cookie will only be accessible via HTTP(S) (no javascript)
Derek Allard2067d1a2008-11-13 22:59:24 +0000368|
Andrey Andreev973a6542015-01-19 13:25:24 +0200369| Note: These settings (with the exception of 'cookie_prefix' and
370| 'cookie_httponly') will also affect sessions.
371|
Derek Allard2067d1a2008-11-13 22:59:24 +0000372*/
Dumk0d55f7492012-07-03 11:21:45 +0300373$config['cookie_prefix'] = '';
374$config['cookie_domain'] = '';
375$config['cookie_path'] = '/';
Robin Sowelld6d9f452011-02-11 15:31:27 -0500376$config['cookie_secure'] = FALSE;
freewil4ad0fd82012-03-13 22:37:42 -0400377$config['cookie_httponly'] = FALSE;
Derek Allard2067d1a2008-11-13 22:59:24 +0000378
379/*
380|--------------------------------------------------------------------------
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200381| Standardize newlines
382|--------------------------------------------------------------------------
383|
384| Determines whether to standardize newline characters in input data,
385| meaning to replace \r\n, \r, \n occurences with the PHP_EOL value.
386|
387| This is particularly useful for portability between UNIX-based OSes,
388| (usually \n) and Windows (\r\n).
389|
390*/
Andrey Andreevaeed15e2014-04-14 16:56:23 +0300391$config['standardize_newlines'] = FALSE;
Andrey Andreevbfb635b2014-01-08 18:32:05 +0200392
393/*
394|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000395| Global XSS Filtering
396|--------------------------------------------------------------------------
397|
398| Determines whether the XSS filter is always active when GET, POST or
399| COOKIE data is encountered
400|
401*/
402$config['global_xss_filtering'] = FALSE;
403
404/*
405|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500406| Cross Site Request Forgery
Derek Allard958543a2010-07-22 14:10:26 -0400407|--------------------------------------------------------------------------
Shane Pearson49ced912010-10-06 17:31:40 -0500408| Enables a CSRF cookie token to be set. When set to TRUE, token will be
Derek Allard958543a2010-07-22 14:10:26 -0400409| checked on a submitted form. If you are accepting user data, it is strongly
410| recommended CSRF protection be enabled.
Eric Barnes9805ecc2011-01-16 23:35:16 -0500411|
412| 'csrf_token_name' = The token name
413| 'csrf_cookie_name' = The cookie name
414| 'csrf_expire' = The number in seconds the token should expire.
RS714b2e9fe2011-12-31 16:02:50 -0200415| 'csrf_regenerate' = Regenerate token on every submission
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100416| 'csrf_exclude_uris' = Array of URIs which ignore CSRF checks
Derek Allard958543a2010-07-22 14:10:26 -0400417*/
418$config['csrf_protection'] = FALSE;
Eric Barnes9805ecc2011-01-16 23:35:16 -0500419$config['csrf_token_name'] = 'csrf_test_name';
420$config['csrf_cookie_name'] = 'csrf_cookie_name';
421$config['csrf_expire'] = 7200;
RS714b2e9fe2011-12-31 16:02:50 -0200422$config['csrf_regenerate'] = TRUE;
Alex Bilbieaeb2c3e2011-08-21 16:14:54 +0100423$config['csrf_exclude_uris'] = array();
Derek Allard958543a2010-07-22 14:10:26 -0400424
425/*
426|--------------------------------------------------------------------------
Derek Allard2067d1a2008-11-13 22:59:24 +0000427| Output Compression
428|--------------------------------------------------------------------------
429|
Derek Jones4b9c6292011-07-01 17:40:48 -0500430| Enables Gzip output compression for faster page loads. When enabled,
Derek Allard2067d1a2008-11-13 22:59:24 +0000431| the output class will test whether your server supports Gzip.
432| Even if it does, however, not all browsers support compression
433| so enable only if you are reasonably sure your visitors can handle it.
434|
Andrey Andreev155ee722014-01-10 15:50:54 +0200435| Only used if zlib.output_compression is turned off in your php.ini.
436| Please do not use it together with httpd-level output compression.
437|
Derek Jones4b9c6292011-07-01 17:40:48 -0500438| VERY IMPORTANT: If you are getting a blank page when compression is enabled it
Derek Allard2067d1a2008-11-13 22:59:24 +0000439| means you are prematurely outputting something to your browser. It could
Derek Jones4b9c6292011-07-01 17:40:48 -0500440| even be a line of whitespace at the end of one of your scripts. For
Derek Allard2067d1a2008-11-13 22:59:24 +0000441| compression to work, nothing can be sent before the output buffer is called
Derek Jones4b9c6292011-07-01 17:40:48 -0500442| by the output class. Do not 'echo' any values with compression enabled.
Derek Allard2067d1a2008-11-13 22:59:24 +0000443|
444*/
445$config['compress_output'] = FALSE;
446
447/*
448|--------------------------------------------------------------------------
449| Master Time Reference
450|--------------------------------------------------------------------------
451|
Andrey Andreevd163e0b2012-06-14 03:09:53 +0300452| Options are 'local' or any PHP supported timezone. This preference tells
453| the system whether to use your server's local time as the master 'now'
454| reference, or convert it to the configured one timezone. See the 'date
Iban Eguia74009652012-06-13 22:57:50 +0200455| helper' page of the user guide for information regarding date handling.
Derek Allard2067d1a2008-11-13 22:59:24 +0000456|
457*/
458$config['time_reference'] = 'local';
459
Derek Allard2067d1a2008-11-13 22:59:24 +0000460/*
461|--------------------------------------------------------------------------
462| Rewrite PHP Short Tags
463|--------------------------------------------------------------------------
464|
465| If your PHP installation does not have short tag support enabled CI
466| can rewrite the tags on-the-fly, enabling you to utilize that syntax
Derek Jones4b9c6292011-07-01 17:40:48 -0500467| in your view files. Options are TRUE or FALSE (boolean)
Derek Allard2067d1a2008-11-13 22:59:24 +0000468|
469*/
470$config['rewrite_short_tags'] = FALSE;
471
472
Derek Jonesc5972282009-02-04 21:40:20 +0000473/*
474|--------------------------------------------------------------------------
475| Reverse Proxy IPs
476|--------------------------------------------------------------------------
477|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300478| If your server is behind a reverse proxy, you must whitelist the proxy
479| IP addresses from which CodeIgniter should trust headers such as
480| HTTP_X_FORWARDED_FOR and HTTP_CLIENT_IP in order to properly identify
481| the visitor's IP address.
Derek Jonesc5972282009-02-04 21:40:20 +0000482|
Andrey Andreev9ac557f2012-10-06 20:27:57 +0300483| You can use both an array or a comma-separated list of proxy addresses,
484| as well as specifying whole subnets. Here are a few examples:
485|
486| Comma-separated: '10.0.1.200,192.168.5.0/24'
487| Array: array('10.0.1.200', '192.168.5.0/24')
Derek Jonesc5972282009-02-04 21:40:20 +0000488*/
489$config['proxy_ips'] = '';