1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
== Installing ==
=== Installing bundles ===
If you want to install the webmail bundle:
apt-get install php-horde-webmail
If you want to install the groupware bundle:
apt-get install php-horde-groupware
NB: Horde bundles provide the ''horde-bundle'' virtual package
=== Installing individual applications ===
Just add php-horde- in front of the application name. Example:
apt-get install php-horde-gollem
== Configuring Webserver ==
/!\
The ''php-horde'' package installs a simple apache config
(''/etc/apache2/conf.d/php-horde.conf''). This is for fast installation but is
not sufficient for production environment (it does not ensure SSL). You can
remove it and add a new site (''/etc/apache2/sites-available/horde.conf'') and
enable it (''a2ensite horde'').
== Configuring Horde ==
There are several ways to configure Horde:
* 1. if you have installed a bundle, you can run the included script
(webmail-install or groupware-install)
* 2. you can bootstrap the config for all applications by running
horde-writable-config and using the web interface
* 3. configure thru the web interface, download the generated file, copy it to
/etc/horde/<app> and make it unwritable (chown root + chmod 0755)
|