preparation of library cleaning
[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 # Which producers need to be called after an article (resp. a comment) is posted
87 Mir.Localizer.OpenPosting.ContentProducers= media.new;articles.changed;startpage.generate;synchronization.run
88 Mir.Localizer.OpenPosting.CommentProducers= articles.changed;synchronization.run
89
90 # Which producers need to be called after the "produce all new" link is clicked from admin
91 Mir.Localizer.Producer.AllNewProducers= media.new;articles.changed;startpage.run;synchronization.run
92
93
94 #note that you can't make pdf's without making fo's
95 #this is actually now set in producers.xml
96 #but these summarize what is said in there for the benefit of OpenMir 
97 GenerateFO=yes
98 GeneratePDF=yes
99
100 #on-time-password-protection
101 PasswdProtection=no
102
103 #use rsync to mirror the website to a remote-host
104 Rsync=no
105 Rsync.Script.Path=/var/www/bin/rsync-copy
106
107 # the maximum allowed size of an uploaded media file in KB.
108 MaxMediaUploadSize=20000
109
110 # the maximum number of allowed media items to upload at once.
111 ServletModule.OpenIndy.MaxMediaUploadItems=20
112
113 # the default number of media items to upload at once
114 ServletModule.OpenIndy.DefaultMediaUploadItems=1
115
116
117 #
118 #
119 # STATIC SITE CONFIG
120 #
121
122 # the url of the static site
123 Producer.ProductionHost=http://indy.code-fu.de
124
125 # Produrce.StorageRoot is the directory, in which
126 # the generated HTML pages will be stored
127 Producer.StorageRoot=/pub/Dokumente/Indymedia/de-tech/Mir/produced
128
129 # for FileEdit module
130 #
131 # where do we find the files? absolute path
132 ServletModule.FileEdit.FileDirectory=/pub/Dokumente/Indymedia/de-tech/Mir/produced
133 ServletModule.FileEdit.ExtFilter=inc
134
135 #
136 #
137 # DYNAMIC SITE CONFIG
138 #
139
140 # the url of the openposting-servlet
141 Producer.OpenAction=http://indy.code-fu.de/Mir/servlet/OpenMir
142
143 # use this property if the pages are not produced under the docRoot
144 # of the webserver. all links in the produced pages are prepended
145 # with Producer.DocRoot
146 Producer.DocRoot=
147
148 Producer.ActionServlet=/servlet/Mir
149
150 # this is the name of the subdirectory where the image-dir
151 # will be linked to.
152 Producer.ImageRoot=/img
153
154
155 # the url of the video-server
156 Producer.Video.Host=http://indy.code-fu.de/video
157
158 # the url of the audio-server
159 Producer.Audio.Host=http://indy.code-fu.de/audio
160
161 # the url of the image-server
162 Producer.Image.Host=http://indy.code-fu.de/images
163
164 # the url of the media-server
165 Producer.Media.Host=http://indy.code-fu.de/media
166
167 # the url of the real-media-server
168 Producer.RealMedia.Host=rtsp://some.media.server/somedir/
169
170
171 # image specific storage directories
172 # absolute directory, where the images are saved
173 Producer.Image.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images/
174
175 # media specific storage directories
176 # absolute directory, where the media files are saved
177 Producer.Media.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/media
178
179 # absolute directory, where the realmedia data files(ra and rm) are saved
180 # the ram files which point to the RealMedia.Host get saved in the regular Media dir
181 # this should make rsyncing to a separate streaming server much easier
182 Producer.RealMedia.Path=/pub/Dokumente/rtsp
183
184 # relativ directory, where the thumbnails will be saved
185 Producer.Image.IconPath=/icon
186
187 # Tiny Icons for the media types on the newswire summary.
188 # (right hand side of start page)
189 Producer.Icon.TinyImage=photo_small.gif
190 Producer.Icon.TinyAudio=audio_small.gif
191 Producer.Icon.TinyVideo=video_small.gif
192 Producer.Icon.TinyText=text_small.gif
193
194 #Medium sized icons used at various places
195 Producer.Icon.BigImage=photo_big.gif
196 Producer.Icon.BigAudio=audio_big.gif
197 Producer.Icon.BigVideo=video_big.gif
198 Producer.Icon.BigText=text_big.gif
199
200 #Icons used for links
201 Producer.ExtLinkName=extlink.gif
202 Producer.IntLinkName=intlink.gif
203 Producer.MailLinkName=maillink.gif
204
205 #the style sheet used to turn html into xsl:fo
206 Producer.HTML2FOStyleSheet=/some/dir/mir/etc/producer/html2fo.xsl 
207
208
209 #
210 # edit with caution below this line
211 ######################################################################
212
213 #
214 #
215 # DATABASE SETUP
216 #
217
218 #
219 # specify your database
220
221 Database.poolMin=1
222 Database.poolMax=10
223 Database.poolResetTime=1.0
224 Database.PoolLog=log/pool.log
225 Database.Limit=20
226 Database.Username=postgres
227 Database.Password=
228 Database.Host=localhost
229 Database.Name=Mir
230
231 #
232 # this sets the adaptor to be used
233
234 Database.Adaptor=mir.storage.DatabaseAdaptorPostgresql
235 Database.Logfile=log/dbentity.log
236
237 #
238 # configuration for adaptor postgres
239 # In this example, "Mir" is the dbname
240
241 Adaptor.PostgreSQL.URL=jdbc:postgresql://localhost:5432/Mir
242 Adaptor.PostgreSQL.Driver=org.postgresql.Driver
243
244 # how many articles should be shown on a list-page
245 Lists.Max.Items=10
246
247 #
248 # Servlet / Module configurations
249 #
250
251 # don't change this unless you really know your i18n.
252 # The default encoding charset used in the written html files as well
253 # as the dynamic output html.
254 # also used for the HTML charset meta tag.
255 Mir.DefaultEncoding=UTF8