PDA

View Full Version : ILIAS AND Deki Wiki together (dyndns-account)



cgsman
09-12-2007, 05:47 PM
Hello,

I have to configure a new server for our school. I upgraded ILIAS3 and I wanted to run both server programs: ILIAS (a Learning management system with a normal apache configuration) AND DekiWiki.
Because of the sophisticated configuration of the Deki-Wiki Virtual Host-file I have no idea how to open a second server root. My Server will be found under "servername.dyndns.org", the wiki can be in "servername.dyndns.org" and ILIAS3 in "servername.dyndns.org/ilias3".

Can somone help me ?

SteveB
09-12-2007, 07:57 PM
There an ongoing discussion about adding application side-by-side with deki wiki. Here is some info that should be helpful: http://forums.opengarden.org/showthread.php?t=660

cgsman
09-17-2007, 05:57 PM
I solved this problem with a trick:

Debian-Etch:
/etc/hosts:
192.168.2.199 deki-host ilias-host mediawikihost
...
/etc/apache2/sites-available/allhosts
Listen 8088
Listen 8096
<VirtualHost *:8088>
ServerName ilias-host
ErrorLog /var/log/apache2/ilias3-error.log
CustomLog /var/log/apache2/access.log common
DocumentRoot "/opt/ilias/www/htdocs/ilias3"
</VirtualHost>

<VirtualHost *:8096>
ServerName mediawiki-host
ErrorLog /var/log/apache2/mediawiki-error.log
CustomLog /var/log/apache2/access.log common
DocumentRoot "/srv/www/htdocs"
</VirtualHost>

<VirtualHost *:80>

.. here are the deki-specific things ...
</virtualHost>

-------

DynDns:

deki-host -> direct dynamic host
mediawiki-host -> redirect webhop to deki-host:8096
ilias-host -> redirect webhop to deki-host:8088

No problems with this !

cgsman