- Timestamp:
- Sep 27, 2024, 6:28:41 AM (7 weeks ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/README
r173 r176 1 1 2 Tewi HTTPd version 1.08D2 Tewi HTTPd version 2.00 3 3 4 4 Original by Nishi <nishi@nishi.boats> -
trunk/Server/config.c
r174 r176 410 410 current->indexes[current->index_count++] = cm_strdup(r[i]); 411 411 } 412 } else if(cm_strcaseequ(r[0], "Readme ")) {412 } else if(cm_strcaseequ(r[0], "ReadmeFile")) { 413 413 for(i = 1; r[i] != NULL; i++) { 414 414 current->readmes[current->readme_count++] = cm_strdup(r[i]); -
trunk/Server/tw_version.h
r174 r176 8 8 #endif 9 9 10 #define TW_VERSION " 1.09\0"10 #define TW_VERSION "2.00\0" 11 11 12 12 const char* tw_get_version(void); -
trunk/Tool/genconf.c
r168 r176 40 40 printf("DirectoryIndex index.html\n"); 41 41 printf("\n"); 42 printf("Readme README\n");42 printf("ReadmeFile README\n"); 43 43 printf("\n"); 44 44 printf("DocumentRoot %s/www\n", argv[1]); -
trunk/example.conf
r156 r176 26 26 DirectoryIndex index.html 27 27 28 Readme README28 ReadmeFile README 29 29 30 30 DocumentRoot /var/www
Note:
See TracChangeset
for help on using the changeset viewer.