mutlifile-upload in openmir
[mir.git] / source / config.properties-dist
index 16dea49..b235bc7 100755 (executable)
 #
+# Sample config for Mir
+# by Matthias <mjordan@code-fu.de> 2001-09-12
+#  
+# The Mir software realizes a semi-dynamic web service:
+# The web server that is accessed by users has pure static
+# pages. These pages are generated by the Mir software that
+# consists of a collection of Java servlets and HTML templates.
+# Mir uses a database server to store the data that is needed to
+# build the static site.
+# So there are basically three parts in this config file:
+# 
+# a) general setup
+# b) static site config
+# c) dynamic admin site
+# d) database config
+# 
 # edit this to suit your needs (here with sampleuser idfx)
+# After you edited this file, build.sh has to be invoked.
+# To be sure, also restart Tomcat.
+# 
+# Note that for Mir to work, Tomcat has to be set up to handle all
+# URLs that begin with /servlet. All other URLs are handled by Apache.
+#
+# The setup uses the following assumptions:
+# The URL to reach the site is http://indy.code-fu.de
+# The DocumentRoot of this URL is /pub/Dokumente/Indymedia/de-tech/Mir
+# All data is located below this directory, including the servlets.
+
+
+
 
-Home=/var/work/idfx/Mir/
-HTMLTemplateProcessor.ActionRoot=/idfx/servlet/Mir
-HTMLTemplateProcessor.DocRoot=/idfx
+#
+#
+# GENERAL SETUP
+#
 
 ClearXslCache=no
+StandardLanguage=de
 DirectOpenposting=yes
-
 #use rsync to mirror the website to a remote-host
 Rsync=no
 Rsync.Script.Path=/var/www/bin/rsync-copy
 
-StandardLanguage=de
 
-# the directory where the html-files will be saved
-Producer.StorageRoot=/var/www/sites/work.indymedia.de
 
-# the url of the site
-Producer.ProductionHost=https://work.indymedia.de
+#
+#
+# STATIC SITE CONFIG
+#
+
+# the url of the static site
+Producer.ProductionHost=http://indy.code-fu.de
+
+# The above URL points to the following directory, in which 
+# the generated HTML pages will be stored
+Producer.StorageRoot=/pub/Dokumente/Indymedia/de-tech/Mir/produced
+
+
+
+
+#
+#
+# DYNAMIC SITE CONFIG 
+#
 
 # the url of the openposting-servlet
-Producer.OpenAction=https://work.indymedia.de/idfx/servlet/OpenMir
+Producer.OpenAction=http://indy.code-fu.de/Mir/servlet/OpenMir
+
 
 # fill this variable if the pages should not be saved directly
 # in the Producer.StorageRoot. then the pages will be saved
 # in this subdirectory
-Producer.DocRoot=/user/idfx/produced
+Producer.DocRoot=
+
 
 # this is the name of the subdirectory where the image-dir
 # will be linked to.
-Producer.ImageRoot=/user/idfx/produced/img
+Producer.ImageRoot=img
 
 # the url of the video-server
-Producer.Video.Host=http://work.indymedia.de/video
+Producer.Video.Host=http://indy.code-fu.de/video
 
 # the url of the audio-server
-Producer.Audio.Host=http://work.indymedia.de/audio
+Producer.Audio.Host=http://indy.code-fu.de/audio
 
 # the url of the image-server
-Producer.Image.Host=https://work.indymedia.de
+Producer.Image.Host=http://indy.code-fu.de/images
 
 # image specific storage directories
 # absolute directory, where the images are saved
-Producer.Image.Path=/var/media/images
+Producer.Image.Path=/pub/Dokumente/Indymedia/de-tech/Mir/produced/images
 
 # relativ directory, where the thumbnails will be saved
 Producer.Image.IconPath=/icon
 
+
+
 #
 # edit with caution below this line
 ######################################################################
 
 #
+#
+# DATABASE SETUP
+#
+
+#
 # specify your database
 
 Database.poolMin=1
@@ -72,14 +125,15 @@ Database.Logfile=log/dbentity.log
 
 #
 # configuration for adaptor mysql
+# In this example, "mir" is the dbname
 
-Adaptor.MySQL.URL=jdbc:mysql://localhost:3306/mir
+Adaptor.MySQL.URL=jdbc:mysql://localhost:3306/Mir
 Adaptor.MySQL.Driver=org.gjt.mm.mysql.Driver
 
 #
 # configuration for adaptor postgres
 
-Adaptor.PostgreSQL.URL=jdbc:postgresql://localhost:5432/mir
+Adaptor.PostgreSQL.URL=jdbc:postgresql://localhost:5432/Mir
 Adaptor.PostgreSQL.Driver=org.postgresql.Driver
 
 #
@@ -247,5 +301,3 @@ Xsl.StartPage=producer/index.xsl
 Xsl.TopicList=producer/topic.xsl
 Xsl.OpenList=producer/open.xsl
 Xsl.Wap=producer/wml2.xsl
-
-