bug fixed thanks to thomas
[mir.git] / etc / config.properties-dist
1 #
2 # Sample config for Mir
3 # by Matthias <mjordan@code-fu.de> 2001-09-12
4 #
5 # The Mir software realizes a semi-dynamic web service:
6 # The web server that is accessed by users has pure static
7 # pages. These pages are generated by the Mir software that
8 # consists of a collection of Java servlets and HTML templates.
9 # Mir uses a database server to store the data that is needed to
10 # build the static site.
11 # So there are basically three parts in this config file:
12 #
13 # a) general setup
14 # b) static site config
15 # c) dynamic admin site
16 # d) database config
17 #
18 # edit this to suit your needs
19 # After you edited this file, build.sh has to be invoked.
20 # To be sure, also restart Tomcat.
21 #
22 # Note that for Mir to work, Tomcat has to be set up to handle all
23 # URLs that begin with /servlet. All other URLs are handled by Apache.
24 #
25 # There are more configuration values located in the default.properties file
26 # located in source/. If necessary these values can be overridden in this file.
27 #
28 # The setup uses the following assumptions:
29 # The URL to reach the site is http://indy.code-fu.de
30 # The StorageRoot of this URL is /pub/Dokumente/Indymedia/de-tech/Mir
31 # All data is located below this directory, including the servlets.
32
33
34 #
35 #
36 # GENERAL SETUP
37 #
38
39 ### mir/imc information
40 Mir.Name=mir.indymedia.org
41 Mir.Shortname=mir
42 Mir.Contact-email.address=mir-coders@lists.indymedia.org
43 Mir.Contact-email.name=mir-coders mailinglist
44 Mir.Tech-email.address=mir-coders@lists.indymedia.org
45 Mir.Tech-email.name=mir-coders mailinglist
46 Mir.Public-email.address=mir-coders@lists.indymedia.org
47 Mir.Public-email.name=mir-coders mailinglist
48
49 Mir.Version=1.1beta
50 StandardLanguage=de
51 DirectOpenposting=yes
52
53 #where to put the lucene index
54 IndexPath=/tmp/index
55
56 # temp-dir used for media-uploads
57 TempDir=/tmp
58
59 Log.LogClass = mir.log.log4j.LoggerImpl
60 Log.log4j.ConfigurationFile = etc/log4j.properties
61 Log.Home = log
62
63 Mir.Localizer=mircoders.localizer.basic.MirBasicLocalizer
64 Mir.Localizer.Logfile=log/localizer.log
65
66 # The location of the producer specifiations
67 Mir.Localizer.ProducerConfigFile=etc/producer/producers.xml
68
69 # Settings for the admin login:
70 # If the default language is left empty, it will set the accept-language of
71 # the client browser as the default.
72 Mir.Login.DefaultLanguage=en
73 Mir.Login.Languages=en;nl;de;qu;tr;ay;es;eu
74
75
76 # the templates
77 Mir.Localizer.Producer.GeneratorLibrary= default=freemarker(etc/producer/)
78 Mir.Localizer.Admin.GeneratorLibrary= default=freemarker(templates/admin/)
79 Mir.Localizer.OpenPosting.GeneratorLibrary= default=freemarker(etc/open/)
80
81 # How should the custom operations (hide etc) in article and comment lists
82 # be presented?
83 # 0 = links, 1 = checkboxes, 2 = a listbox
84 Mir.Localizer.Admin.ListOperationsFlavor=1
85
86 # How should the topics be presented on the article edit page?
87 # 0 = in a multiselect list box, 1 = checkboxes
88 Mir.Localizer.Admin.TopicListFlavor=1
89
90 # For the checkboxes flavour, how many columns should there be?
91 Mir.Localizer.Admin.TopicListColumns=3
92
93 # In which order should the topic appear?
94 Mir.Localizer.Admin.TopicListOrder=title
95
96 # Which producers need to be called after an article (resp. a comment) is posted
97 Mir.Localizer.OpenPosting.ContentProducers= media.new;articles.changed;startpage.generate;synchronization.run
98 Mir.Localizer.OpenPosting.CommentProducers= articles.changed;synchronization.run
99
100 # Which producers need to be called after the "produce all new" link is clicked from admin
101 Mir.Localizer.Producer.AllNewProducers= media.new;articles.changed;startpage.run;synchronization.run
102
103
104 #note that you can't make pdf's without making fo's
105 #this is actually now set in producers.xml
106 #but these summarize what is said in there for the benefit of OpenMir 
107 GenerateFO=yes
108 GeneratePDF=yes
109
110 #use rsync to mirror the website to a remote-host
111 Rsync=no
112 Rsync.Script.Path=/var/www/bin/rsync-copy
113
114 # the maximum allowed size of an uploaded media file in KB.
115 MaxMediaUploadSize=20000
116
117 # the maximum number of allowed media items to upload at once.
118 ServletModule.OpenIndy.MaxMediaUploadItems=20
119
120 # the default number of media items to upload at once
121 ServletModule.OpenIndy.DefaultMediaUploadItems=1
122
123
124 #
125 #
126 # STATIC SITE CONFIG
127 #
128
129 # the url of the static site
130 Producer.ProductionHost=http://indy.code-fu.de
131
132 # Produrce.StorageRoot is the directory, in which
133 # the generated HTML pages will be stored
134 Producer.StorageRoot=/pub/Dokumente/Indymedia/de-tech/Mir/produced
135
136 # for FileEdit module
137 #
138 # where do we find the files? absolute path
139 ServletModule.FileEdit.FileDirectory=/pub/Dokumente/Indymedia/de-tech/Mir/produced
140 ServletModule.FileEdit.ExtFilter=.*\.inc$
141 ServletModule.FileEdit.Recursive=1
142
143 #
144 #
145 # DYNAMIC SITE CONFIG
146 #
147
148 # the url of the openposting-servlet
149 Producer.OpenAction=http://indy.code-fu.de/Mir/servlet/OpenMir
150
151 # use this property if the pages are not produced under the docRoot
152 # of the webserver. all links in the produced pages are prepended
153 # with Producer.DocRoot
154 Producer.DocRoot=
155
156 Producer.ActionServlet=/servlet/Mir
157
158 # this is the name of the subdirectory where the image-dir
159 # will be linked to.
160 Producer.ImageRoot=/img
161
162
163 # the url of the video-server
164 Producer.Video.Host=http://indy.code-fu.de/video
165
166 # the url of the audio-server
167 Producer.Audio.Host=http://indy.code-fu.de/audio
168
169 # the url of the image-server
170 Producer.Image.Host=http://indy.code-fu.de/images
171
172 # the url of the media-server
173 Producer.Media.Host=http://indy.code-fu.de/media
174
175 # the url of the real-media-server
176 Producer.RealMedia.Host=rtsp://some.media.server/somedir/
177
178
179 # image specific storage directories
180 # absolute directory, where the images are saved
181 Producer.Image.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images/
182
183 # media specific storage directories
184 # absolute directory, where the media files are saved
185 Producer.Media.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/media
186
187 # absolute directory, where the realmedia data files(ra and rm) are saved
188 # the ram files which point to the RealMedia.Host get saved in the regular Media dir
189 # this should make rsyncing to a separate streaming server much easier
190 Producer.RealMedia.Path=/pub/Dokumente/rtsp
191
192 # relativ directory, where the thumbnails will be saved
193 Producer.Image.IconPath=/icon
194
195 # Tiny Icons for the media types on the newswire summary.
196 # (right hand side of start page)
197 Producer.Icon.TinyImage=photo_small.gif
198 Producer.Icon.TinyAudio=audio_small.gif
199 Producer.Icon.TinyVideo=video_small.gif
200 Producer.Icon.TinyText=text_small.gif
201
202 #Medium sized icons used at various places
203 Producer.Icon.BigImage=photo_big.gif
204 Producer.Icon.BigAudio=audio_big.gif
205 Producer.Icon.BigVideo=video_big.gif
206 Producer.Icon.BigText=text_big.gif
207
208 #Icons used for links
209 Producer.ExtLinkName=extlink.gif
210 Producer.IntLinkName=intlink.gif
211 Producer.MailLinkName=maillink.gif
212
213 #the style sheet used to turn html into xsl:fo
214 Producer.HTML2FOStyleSheet=/some/dir/mir/etc/producer/html2fo.xsl 
215
216
217 #
218 # edit with caution below this line
219 ######################################################################
220
221 #
222 #
223 # DATABASE SETUP
224 #
225
226 #
227 # specify your database
228
229 Database.poolMin=1
230 Database.poolMax=10
231 Database.poolResetTime=1.0
232 Database.PoolLog=log/pool.log
233 Database.Limit=20
234 Database.Username=postgres
235 Database.Password=
236 Database.Host=localhost
237 Database.Name=Mir
238
239 #
240 # this sets the adaptor to be used
241
242 Database.Adaptor=mir.storage.DatabaseAdaptorPostgresql
243 Database.Logfile=log/dbentity.log
244
245 #
246 # configuration for adaptor postgres
247 # In this example, "Mir" is the dbname
248
249 Adaptor.PostgreSQL.URL=jdbc:postgresql://localhost:5432/Mir
250 Adaptor.PostgreSQL.Driver=org.postgresql.Driver
251
252 # how many articles should be shown on a list-page
253 Lists.Max.Items=10
254
255 #
256 # Servlet / Module configurations
257 #
258
259 # don't change this unless you really know your i18n.
260 # The default encoding charset used in the written html files as well
261 # as the dynamic output html.
262 # also used for the HTML charset meta tag.
263 Mir.DefaultEncoding=UTF8