home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 35 Internet / 35-Internet.zip / srev13h.zip / SENDFILE.CNT < prev    next >
Text File  |  1999-03-17  |  2KB  |  49 lines

  1. ; Support file for the SRE-http HTTP server. 3/99
  2. ; This file is used by SENDFILE to keep track of transferred files.
  3. ; SENDFILE will add files to here as they are requested,
  4. ; or augment the count if a file is already here.
  5. ;
  6. ; Each entry should have the form: 
  7. ; host_nickname//URL_NAME  CTS   
  8. ; where:
  9. ;  host_nickname// does not appear in single host setups
  10. ; URL_NAME can include wildcards.
  11. ; and there is NO space between host_Nickname// and URL_NAME.
  12. ;    The URL_NAME is relative to the data directory, or a virtual directory.
  13. ;    CTS is the "count of hits"
  14. ;
  15. ;               --------------
  16. ; Notes:
  17. ;
  18. ; On / and \ :  They are treated the same (all / are converted to \)
  19. ;                       A Leading \ (or /) is stripped.
  20. ;
  21. ; Match precedence and wildcarding:
  22. ;   If several entries can match the URL...
  23. ;     1) Exact matches take precedence
  24. ;     2) The wildcard match with the "longest portion before the *"
  25. ;        is used.
  26. ;     3) If a tie occurs in 2, the match with the longest portion after the
  27. ;        * is used
  28. ;     Thus, if your URL is FOOD/FRUIT/ORANGES.HTM
  29. ;     then the order (with first being chosen before last) is:
  30. ;               FOOD/FRUIT/ORANGES.HTM  (the exact match)
  31. ;               FOOD/FRUIT/*.HTM
  32. ;               FOOD/FRUIT/*
  33. ;               FOOD/*
  34. ;     (these 4 entries can appear in any order in this file, with no
  35. ;      effect on precedence).
  36. ;
  37. ;
  38. ; -------------------------------
  39. ; Remove the leading ; to enable the following examples
  40. ; -------
  41. ;  keep track of any file sent from PUBLIC\
  42. :PUBLIC\* 0 
  43. ; Keep track of  requests for INDEX.HTM 
  44. ;INDEX.HTM 0 
  45. ; keep track, to the ZOO host, for SCHEDULE.DOC
  46. ;ZOO//SCHEDULE.DOC 123
  47. ; anything else, an entry will be added below here.
  48.  
  49.