Changeset 251
- Timestamp:
- 04/03/2005 09:04:08 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 modified
-
UPGRADING-1.4.0.txt (modified) (1 diff)
-
doc/lighttpd.conf (modified) (1 diff)
-
src/mod_indexfile.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/UPGRADING-1.4.0.txt
r250 r251 11 11 server.modules = ( ..., "mod_indexfile", ... ) 12 12 13 index-file. extensions = ( "index.html", "index.html" )13 index-file.names = ( "index.html", "index.php" ) 14 14 15 15 2. directory listings are handled by mod_dirlisting now -
trunk/doc/lighttpd.conf
r249 r251 47 47 48 48 # files to check for if .../ is requested 49 index-file. extensions= ( "index.php", "index.html",49 index-file.names = ( "index.php", "index.html", 50 50 "index.htm", "default.htm" ) 51 51 -
trunk/src/mod_indexfile.c
r186 r251 89 89 90 90 config_values_t cv[] = { 91 { "index-file. extensions", NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 0 */91 { "index-file.names", NULL, T_CONFIG_ARRAY, T_CONFIG_SCOPE_CONNECTION }, /* 0 */ 92 92 { NULL, NULL, T_CONFIG_UNSET, T_CONFIG_SCOPE_UNSET } 93 93 }; … … 135 135 data_unset *du = dc->value->data[j]; 136 136 137 if (buffer_is_equal_string(du->key, CONST_STR_LEN("index-file. extensions"))) {137 if (buffer_is_equal_string(du->key, CONST_STR_LEN("index-file.names"))) { 138 138 PATCH(indexfiles); 139 139 }

