|
[Webware-checkins] CVS: Webware/WebKit/Configs AppServer.config,1.13,1.13.2.1
From: Jay Love <jslove@us...> - 2002-01-26 21:35
|
Update of /cvsroot/webware/Webware/WebKit/Configs
In directory usw-pr-cvs1:/tmp/cvs-serv9851
Modified Files:
Tag: MultipleSerApp-1
AppServer.config
Log Message:
Update default to MultiAppService
Index: AppServer.config
===================================================================
RCS file: /cvsroot/webware/Webware/WebKit/Configs/AppServer.config,v
retrieving revision 1.13
retrieving revision 1.13.2.1
diff -C2 -d -r1.13 -r1.13.2.1
*** AppServer.config 2001/10/26 13:54:55 1.13
--- AppServer.config 2002/01/26 21:35:20 1.13.2.1
***************
*** 1,7 ****
{
'PrintConfigAtStartUp': 1,
! 'Verbose': 1,
'Host': '127.0.0.1',
! 'Port': 8086,
'PlugIns': [],
'PlugInDirs': ['%(WebwarePath)s'],
--- 1,12 ----
+ ##You must start one service
+
+
+ ## Here's a simple version of the new config
{
'PrintConfigAtStartUp': 1,
! 'Verbose': 0,
'Host': '127.0.0.1',
! 'Port': 8086, ##used only by WebKit.cgi, should be the main service
! 'InternalPort': 26543, # a port that the AppServer can bind to and use internally
'PlugIns': [],
'PlugInDirs': ['%(WebwarePath)s'],
***************
*** 9,12 ****
'MaxServerThreads': 20,
'MinServerThreads': 5,
! 'CheckInterval': 100,
! }
--- 14,38 ----
'MaxServerThreads': 20,
'MinServerThreads': 5,
! 'CheckInterval': 500,
! 'Services': { #Services are classes that talk on a socket
! 'WebKitProtocolService': { #service name, can be anything unique
! 'ServicePort': 8086,
! 'RequestHandlerClass': 'WebKit.WebKitRequestHandler',
! 'Configuration' : {
! }
! }, ## end WebKitProtocolService
! 'HTTPServer': {
! 'ServicePort': [8080,8088],
! 'RequestHandlerClass': 'WebKit.HTTPRequestHandler',
! 'Configuration': {
! 'DefaultApplication': 'localhost',
! },
! }, ##end HTTPServer
! }, ##END SERVICES
! 'Applications': {
! 'localhost': {
! 'ApplicationClass': 'WebKit.Application',
! },
! } ##END APPLICATIONS
! } ## End Configuration
!
|
| Thread | Author | Date |
|---|---|---|
| [Webware-checkins] CVS: Webware/WebKit/Configs AppServer.config,1.13,1.13.2.1 | Jay Love <jslove@us...> |