Changeset 2315 for trunk/application
- Timestamp:
- 03/17/2008 08:04:27 PM (8 months ago)
- Files:
-
- 1 modified
-
trunk/application/config/config.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/application/config/config.php
r2314 r2315 1 1 <?php defined('SYSPATH') or die('No direct script access.'); 2 2 /** 3 * Base path of the web site. If this includes a domain, (eg, "localhost/kohana/") then4 * 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.3 * Base path of the web site. If this includes a domain, eg: localhost/kohana/ 4 * then a full URL will be used, eg: http://localhost/kohana/. If it only includes 5 * the path, and a site_protocol is specified, the domain will be auto-detected. 6 6 */ 7 $config['site_domain'] = '/kohana/ trunk/';7 $config['site_domain'] = '/kohana/'; 8 8 9 9 /** 10 * Force a default protocol to be used by the site. If no site_protocol is specified, then the11 * current protocol is used, or when possible, only an absolute path (with no protocol/domain)12 * is used.10 * Force a default protocol to be used by the site. If no site_protocol is 11 * specified, then the current protocol is used, or when possible, only an 12 * absolute path (with no protocol/domain) is used. 13 13 */ 14 14 $config['site_protocol'] = ''; … … 66 66 $config['modules'] = array 67 67 ( 68 MODPATH.'auth', // Authentication68 // MODPATH.'auth', // Authentication 69 69 // MODPATH.'forge', // Form generation 70 70 // MODPATH.'kodoc', // Self-generating documentation
