The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

  Kwiki::Simple::Server::HTTP - Start a stand-alone kwiki http server

SYNOPSIS

  kwiki -add Kwiki::Simple::Server::HTTP
  kwiki -start
  HTTP::Server::Simple: You can connect to your server at http://localhost:8080

Or starts it on different port:

  kwiki -start 1234
  HTTP::Server::Simple: You can connect to your server at http://localhost:1234

DESCRIPTION

This Kwiki plugin let you run a standalone http server for your Kwiki under current working directory. It is helpful for debugging purpose or just startup a wiki site quickly. After installed, just run

  kwiki -start

And a http server (based on HTTP::Server::Simple::Kwiki would be started. If you wish to run it on different port number, pass it as a command line argument:

  kwiki -start 1234

or edit config.yaml, change the value of simple_server_http_port like this:

  simple_server_http_port: 1234

Command line option has higher precedence then configuration.

SEE ALSO

Kwiki, HTTP::Server::Simple::Kwiki

COPYRIGHT

Copyright 2005 by Kang-min Liu <gugod@gugod.org>.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See <http://www.perl.com/perl/misc/Artistic.html>