source: main/trunk/greenstone2/cgi-bin/gsdlsite.cfg.in@ 24759

Last change on this file since 24759 was 24759, checked in by ak19, 13 years ago

Fix for spaces in filepath when launching the apache webserver, since that calls gsicontrol with the reset-gsdlhome target, which needs to retrieve the gsdlhome property from the cgi-bin\gsdlhome. This property being a path value can contain spaces, so the delimiter separating the gsdlhome property key from its value cannot be (or contain) spaces. It's now been made a tab. Need to still test this on Linux.

File size: 3.0 KB
Line 
1# this file should be placed in the same directory as your library
2# executable file. it defines parameters that are particular to a
3# given site, and therefore should be edited to suit your site.
4
5# points to the GSDLHOME directory
6# This must be set, and must point to the top level Greenstone directory
7# (usually gsdl or Greenstone).
8# Put quotes around the GSDLHOME path value if it contains any spaces.
9# It's important that Tab(s) and not any spaces are used (as a delimiter)
10# to separate the gsdlhome property key from its value, since the value
11# is a filepath and can therefore contain spaces of its own.
12gsdlhome **GSDLHOME**
13
14# this is the http address of GSDLHOME
15# if your webserver's DocumentRoot is set to $GSDLHOME
16# then httpprefix can be commented out
17httpprefix /greenstone
18
19# this is the http address of the Greenstone web directory (which contains
20# images, style etc)
21# if your web directory is a top level folder inside $GSDLHOME, then this
22# can remain commented out, and will default to httpprefix/web
23#httpweb /greenstone/web
24
25# this should contain the http address of the library.cgi script. This
26# is not needed if the http server sets the environment variable
27# SCRIPT_NAME
28# Generally this is not needed with Apache
29#gwcgi /greenstone/cgi-bin/library.cgi
30
31# maxrequests is the most requests a fastcgi process
32# will serve before it exits. This can be set to a
33# low figure (like 1) while debugging and then set
34# to a high figure (like 10000) when everything is
35# working well.
36# Only applies if you are using fastcgi
37maxrequests 10000
38
39# Remote Greenstone Options (for server side)
40
41# If Perl is not already on your PATH, set the following to the
42# full path of the perl bin directory (Perl's parent folder)
43# and it will be prepended to the PATH.
44#perlpath /usr/bin
45
46# Options for FLI
47
48# If using Greenstone's GLIServer to run the Fedora Librarian
49# Interface (FLI), then you need to set fedora version and fedora home
50# variables, either below, or as environment variables.
51# FEDORA_VERSION is the major version number of Fedora and
52# FEDORA_HOME is the full path to your Fedora installation.
53# Setting fedorahome and fedoraversion here will over-ride the
54# FEDORA_HOME and FEDORA_VERSION environment variables.
55#fedorahome /full/path/to/fedora
56#fedoraversion 3
57
58# If using Greenstone's GLIServer to run the Fedora Librarian
59# Interface (FLI), then you need to set the full path to Java either as below
60# or as the JAVA_HOME environment variable.
61# Setting javahome here will over-ride the JAVA_HOME environment variable.
62#javahome /full/path/to/j2sdk1.4-or-higher
63
64# Options for Open Office (used in converting Office documents)
65
66# If using Open Office on Windows, then you can optionally customise the
67# following properties (defaults are as shown). E.g. if Open Office is not
68# located in C:\Program Files\OpenOffice.org 3\program, then you'll want
69# to provide its new path by specifying soffice_home.
70#soffice_home "C:\Program Files\OpenOffice.org 3\program"
71#soffice_host 127.0.0.1
72#soffice_port 8200
73#jodconverter_port 8100
74
75# Leave an empty line at the end
Note: See TracBrowser for help on using the repository browser.