2 Standalone server configuration, you can either use this file or
3 commandline options to configure server options.
6 from MoinMoin.script.server.standalone import DefaultConfig
8 class Config(DefaultConfig):
9 port = 8080 # if you use port < 1024, you need to start as root
11 # if you start the server as root, the standalone server can change
12 # to this user and group, e.g. 'www-data'
16 # use '' for all interface or "1.2.3.4" for some specific IP
17 #interface = 'localhost'
19 # where the static data is served from:
20 #docs = "/usr/share/moin/htdocs"
23 #serverClass = 'ThreadPoolServer'
25 #requestQueueSize = 50