Changeset 404

Show
Ignore:
Timestamp:
06/26/2005 12:14:09 PM (3 years ago)
Author:
jan
Message:

added docs for mod_dirlisting

Location:
trunk/doc
Files:
1 added
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/doc/Makefile.am

    r373 r404  
    3030status.txt \ 
    3131upload-progress.txt \ 
    32 trigger-b4-dl.txt 
     32trigger-b4-dl.txt \ 
     33dirlisting.txt 
    3334 
    3435HTMLDOCS=accesslog.html \ 
     
    6061         status.html \ 
    6162         upload-progress.html \ 
    62          trigger-b4-dl.html 
     63         trigger-b4-dl.html \ 
     64         dirlisting.html 
    6365 
    6466EXTRA_DIST=lighttpd.conf lighttpd.user \ 
  • trunk/doc/configuration.txt

    r355 r404  
    5151  server.modules = ( "mod_access", "mod_rewrite" ) 
    5252   
    53   # enable directory listings 
    54   server.dir-listing = "enable" 
    55  
    5653  # variables, computed when config is read. 
    5754  var.mymodule = "foo" 
     
    115112 
    116113  # disable directory-listings for /download/* 
    117   server.dir-listing = "enable" 
     114  dir-listing.activate = "enable" 
    118115  $HTTP["url"] =~ "^/download/" { 
    119     server.dir-listing = "disable" 
     116    dir-listing.activate = "disable" 
    120117  } 
    121118   
     
    191188  groupname used to run the server 
    192189  NOTE: requires root-permissions 
    193  
    194 server.dir-listing 
    195   enables virtual directory listings if a directory is requested no 
    196   index-file was found  
    197  
    198 dir-listing.hide-dotfiles 
    199   if enabled, does not list hidden files in directory listings generated 
    200   by the dir-listing option. 
    201  
    202   default: enabled 
    203  
    204 dir-listing.external-css 
    205   path to an external css stylesheet for the directory listing 
    206190 
    207191server.follow-symlink