source: main/trunk/greenstone3/build.properties.in@ 29845

Last change on this file since 29845 was 29845, checked in by ak19, 9 years ago

Modified gs3-server dialog to have an Allow External Connections checkbox to match with GS2. Affects org/greenstone/server code and server.properties file, greenstone.xml.in of tomcat, build.xml and build.properties

File size: 5.4 KB
Line 
1#### properties file for Greenstone3 building using ANT. See the README for more
2#### information
3
4## Tomcat installation
5# Set this to the internet/intranet name of the machine that Tomcat is/will be
6# run on. localhost is fine for accessing the server from the local machine,
7# but not remotely
8tomcat.server=localhost
9# The port number that tomcat is/will be run on
10tomcat.port=8383
11# Tomcat's shutdown port - this may need to be changed if you are running two or more Tomcats
12tomcat.shutdown.port=8305
13# If tomcat is already running, enter the path to the base directory here
14tomcat.installed.path=
15# uncomment the following if you have moved the greenstone3 web directory to tomcats webapps dir
16#web.home=${tomcat.installed.path}/webapps/greenstone3
17
18## Collection building options
19# uncomment if you don't want to have collection building enabled
20#disable.collection.building=true
21#
22# uncomment (and edit) if you want to control where perl is found
23#perl.path=/usr/bin
24
25## Greenstone 3 server program options
26# does running the server automatically start up Tomcat and a browser
27server.auto.start=false
28# if set to true, won't try other ports if the specified port is not available
29server.keep.port=false
30# default servlet to start with
31server.default.servlet=/library
32# whether to make the greenstone pages publicly accessible or only to this machine
33server.external.access=true
34
35# The context name of your GS3 digital library. By default this will be "greenstone3".
36# Ensure this has a value. If you change this multiple times, you need to remove the old versions
37# of <custom.context>.xml from GS3/packages/tomcat/conf/Catalina/localhost
38# does not contain previous
39custom.context=greenstone3
40
41##Browser setup
42browser.path=
43
44## Proxy setup - Greenstone installation will attempt to download extra packages. Set the proxy information here if you are behind a firewall.
45# The proxy server name
46proxy.host=
47# The proxy server port
48proxy.port=
49# A user name to use when talking to the proxy server (optional, will prompt if not entered here)
50proxy.user=
51# A password to use when talking to the proxy server (optional, will prompt if not entered here)
52proxy.password=
53
54## java compilation properties - for javac
55# Should compilation include the debug option?
56compile.debug=true
57# Should compilation include the deprecation option?
58compile.deprecation=true
59# Should compilation include the optimize option?
60compile.optimize=true
61
62# Properties that control cross-compiling
63compile.cross = false
64#cross.os = windows
65#cross.host = i686-w64-mingw32
66#cross.build = i686-pc-linux-gnu
67#cross.configure.extraargs =
68
69#cross.os = android
70#cross.host = arm-linux-androideabi
71#cross.build = i686-pc-linux-gnu
72#cross.configure.extraargs = gl_cv_header_working_stdint_h=yes
73
74
75# Control whether or not JNI bindings are used
76# e.g. MG, MG++ and GDBM and the like
77# Setting this false means these components are not available to the install
78# The expectation is that collections will be build from 100% Java components:
79# e.g Lucene and JDBM
80#
81# Ant 1.7.1 and before only test for *existence* so this needs to be commented
82# in or out to control whether jni is used or not
83with.jni=true
84
85## Controls whether or not we want GLI and GEMS to be checked out and compiled
86with.gli.and.gems=true
87
88## Control if compilation of gs2 is static or not. Used, for example, for distributions
89# Same issue as 'with.jni' for how this gets used in ant 1.7.1 and before
90#compile.static=true
91
92# A flag used by the release-kit to compile with gnomelib
93# (Previously this flag was called use.support.lib but got conflated with
94# the property checkout.gnomelib.ext below)
95#use.gnomelib.ext=true
96
97## Uncomment these lines if enabling compilation with the gnome-lib extension
98## and if compiling imagemagick
99## These extensions should be in the [gsdl3home]/gs2build/ext directory
100#checkout.gnomelib.ext=true
101#checkout.imagemagick.ext=true
102
103# By default, GS3 will check out the pdfbox extension from SVN
104checkout.pdfbox.ext=true
105
106# The following two properties are automatically overridden by gs3-server
107# when running off a read-only medium such as a DVD ...
108#
109# The 'writable' home default is to be the same location as gsdl3.home
110gsdl3home.isreadonly=false
111gsdl3.writablehome=${basedir}/web
112
113# ... alternative the above can be changed to
114#
115# gsdl3home.isreadonly=true
116# gsdl3.writablehome=${java.io.tmpdir}/greenstone/web
117#
118# ... or else provided on the command line, e.g.:
119# ant -Dgsdl3home.isreadonly=true gsdl3.writablehome=/tmp/greenstone/web start
120
121## windows c++ compilation
122# The following property does not help in build.xml.
123# The user needs to run Visual Studio's vcvars32.bat script from the
124# MSDOS prompt before compiling Greenstone3 (before "ant prepare install")
125#compile.windows.c++.setup=C:/Program Files/Microsoft Visual Studio/VC98/Bin/VCVARS32.BAT
126
127##Flax stuff##
128##uncomment if you want to install flax
129#install.flax=true
130flax.checkout.path=${flax.svn.root}/trunk/flaxmain
131
132##These need to be uncommented if using Fedora and Fedora GSearch with Greenstone's tomcat
133fedora.home=#${basedir}/ext/fedora3
134#fedora.maxpermsize=-XX:MaxPermSize=128m
135#fedora.password=pounamu
136#index.writelock.timeout=10000
137
138##Web services related constants##
139base.webservice.name=SOAPServer
140##listing and description of all the web services deployable on GS3##
141web.services.list=${base.webservice.name} for Greenstone3's core web services, QBR${base.webservice.name} for Query, Browse and Retrieve services
Note: See TracBrowser for help on using the repository browser.