Help for this page

Select Code to Download


  1. or download this
    
    fragment of action.psgi
    ...
           mount "/" => $htdocs;
        };
    
  2. or download this
     use Plack::Builder;
     use Plack::App::File;
    ...
                               }
                       };
    
  3. or download this
    
     mount "/" => builder {
    ...
               enable 'Session' store => 'File';
               $action;
            }
    
  4. or download this
    
    don't do this; wrong
    ...
                 $action;
             }