The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#
# This is an example webserver configuration.
#
# See doc/config-guide.txt for descriptions of each command (line)
# and configuration syntax.
#

CREATE SERVICE docs
  SET listen         = 0.0.0.0:80
  SET role           = web_server
  SET docroot        = /usr/share/doc/
  SET dirindexing    = 1
  SET persist_client = on
ENABLE docs


# always good to keep an internal management port open:
CREATE SERVICE mgmt
  SET role   = management
  SET listen = 127.0.0.1:60000
ENABLE mgmt