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