Differences between revisions 1 and 20 (spanning 19 versions)
Revision 1 as of 2002-07-15 23:59:38
Size: 290
Editor: ipd54b5a02
Comment:
Revision 20 as of 2009-07-18 16:50:52
Size: 751
Editor: S0106001e8c97f6c1
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
The ActivePython PythonDistribution is a distribution focusing on an easy install and use. On all supported platforms (Linux, Windows and Solaris) it includes a package manager, making installing and managing extensions quick and easy. On Windows, ActivePython also includes ["win32all"]. """
    Standalone server configuration, you can either use this file or
    commandline options to configure server options.
"""

from MoinMoin.script.server.standalone import DefaultConfig

class Config(DefaultConfig):
    port = 8080 # if you use port < 1024, you need to start as root

    # if you start the server as root, the standalone server can change
    # to this user and group, e.g. 'www-data'
    #user = ''
    #group = ''

    # use '' for all interface or "1.2.3.4" for some specific IP
    #interface = 'localhost'

    # where the static data is served from:
    #docs = "/usr/share/moin/htdocs"

    # tuning options:
    #serverClass = 'ThreadPoolServer'
    #threadLimit = 10
    #requestQueueSize = 50

"""

  • Standalone server configuration, you can either use this file or commandline options to configure server options.

"""

from MoinMoin.script.server.standalone import DefaultConfig

class Config(DefaultConfig):

  • port = 8080 # if you use port < 1024, you need to start as root # if you start the server as root, the standalone server can change # to this user and group, e.g. 'www-data'

    #user = #group =

    # use for all interface or "1.2.3.4" for some specific IP #interface = 'localhost' # where the static data is served from: #docs = "/usr/share/moin/htdocs" # tuning options:

    #serverClass = 'ThreadPoolServer' #threadLimit = 10 #requestQueueSize = 50

ActivePython (last edited 2014-03-17 00:53:07 by DaleAthanasias)

Unable to edit the page? See the FrontPage for instructions.