Changeset 2178 for trunk/application/config/config.php
- Timestamp:
- 02/27/2008 02:12:48 PM (11 months ago)
- Files:
-
- 1 modified
-
trunk/application/config/config.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r2177 r2178 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Domain name, with the installation directory. Default: localhost/kohana/4 * If this starts with a /, Kohana will try to get the domain from HTTP_HOST5 * from the web server.3 * Base path of the web site. If this includes a domain, (eg, "localhost/kohana/") then 4 * a full URL will be used (eg, "http://localhost/kohana/"). If it only includes the path, 5 * and a site_protocol is specified, the domain will be auto-detected. 6 6 */ 7 $config['site_domain'] = ' localhost/kohana/';7 $config['site_domain'] = '/kohana/'; 8 8 9 9 /** 10 * Default protocol used to access the website. Default: http 10 * Force a default protocol to be used by the site. If no site_protocol is specified, then the 11 * current protocol is used, or when possible, only an absolute path (with no protocol/domain) 12 * is used. 11 13 */ 12 $config['site_protocol'] = ' http';14 $config['site_protocol'] = ''; 13 15 14 16 /**
