mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-05-31 09:11:11 +00:00
*** empty log message ***
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@6293 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b45dc89478
commit
b13501c8e3
62 changed files with 3645 additions and 1770 deletions
96
GSWAdaptors/Doc/ConfigurationFile.html
Normal file
96
GSWAdaptors/Doc/ConfigurationFile.html
Normal file
|
@ -0,0 +1,96 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
|
||||
<html>
|
||||
<head>
|
||||
<title>Adaptor Configuration File</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
Configuration file path is specified with Apache directive (/etc/httpd/conf/gsweb.conf is an exemple): <BR>
|
||||
<PRE>GSWeb_ConfigFilePath /etc/httpd/conf/gsweb.conf</PRE><BR>
|
||||
|
||||
|
||||
The format is GNUstep/OpenStep property list.<BR>
|
||||
Here is an exemple with all the possible options:<BR>
|
||||
|
||||
<PRE>
|
||||
|
||||
{
|
||||
//Global Parameters
|
||||
canDumpStatus=YES; //YES if server can display status (URL: /GSWeb/status)
|
||||
GSWExtensionsFrameworkWebServerResources="/GSW/GSWExtensions/WebServerResources"; //URL of GSWExtensions Framework WebServerResources directory
|
||||
|
||||
//List of applications
|
||||
applications= {
|
||||
//The 1st application: MyApp
|
||||
MyApp = {
|
||||
//List of its instances
|
||||
instances = {
|
||||
//First Instance
|
||||
1 = {
|
||||
host=145.146.147.20; //Host of this instance
|
||||
port=9001; //Port of this instance
|
||||
parameters= { //Unused
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
//The 2nd application: AnotherOne
|
||||
AnotherOne = {
|
||||
//URL of GSWExtensions Framework WebServerResources directory. It overides Global parameter
|
||||
GSWExtensionsFrameworkWebServerResources="/GSW/GSWExtensions/WebServerResources";
|
||||
//YES to say that this application can be listed when the adaptor don't find an application
|
||||
canDump = YES;
|
||||
//Unused for the moment
|
||||
applicationHeaders = {
|
||||
header1=1264;
|
||||
header2=4567;
|
||||
};
|
||||
//Instances
|
||||
instances = {
|
||||
//1st instance
|
||||
1 = {
|
||||
host=145.146.147.20;
|
||||
port=9002;
|
||||
parameters= {
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
MyAppVoid = {
|
||||
//Here we have 3 instances
|
||||
instances = {
|
||||
1 = {
|
||||
host=145.146.147.20;
|
||||
port=9001;
|
||||
parameters= {
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
2 = {
|
||||
host=145.146.147.21;
|
||||
port=9002;
|
||||
parameters= {
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
5 ={
|
||||
host=145.146.147.22;
|
||||
port=9003;
|
||||
parameters= {
|
||||
transport=socket;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
};
|
||||
|
||||
</PRE>
|
||||
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue