Size: 290
Comment:
|
Size: 751
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