AppServer.config 794 B

123456789101112131415161718192021222324252627
  1. # AppServer.config file for Webware for Python
  2. PrintConfigAtStartUp = False
  3. Verbose = False # verbose output
  4. PlugInDirs = [WebwarePath] # load all Webware plug-ins
  5. PlugIns = [] # use this if you want to load specific plug-ins only
  6. # This is the IP address at which the application server will listen:
  7. Host = '' # use '' for listening on all network interfaces
  8. EnableAdapter = True # enable WebKit adapter
  9. AdapterPort = 8086
  10. EnableHTTP = True # enable built-in Webserver
  11. HTTPPort = 8080
  12. # The initial, minimum and maxium number of worker threads:
  13. StartServerThreads = 10
  14. MinServerThreads = 5
  15. MaxServerThreads = 20
  16. # The maximum execution time for AppServer requests:
  17. MaxRequestTime = 300 # specified in seconds
  18. # You can activate auto reloading on source changes here:
  19. AutoReload = True