Differences between revisions 9 and 10
Revision 9 as of 2013-10-18 10:45:44
Size: 1639
Editor: ?MathieuParent
Comment:
Revision 10 as of 2013-10-31 13:48:07
Size: 1636
Editor: ?MathieuParent
Comment:
Deletions are marked like this. Additions are marked like this.
Line 37: Line 37:
aptitude install php-horde-webmail apt-get install php-horde-webmail
Line 47: Line 47:
aptitude install php-horde-groupware apt-get install php-horde-groupware
Line 60: Line 60:
aptitude install php-horde-gollem apt-get install php-horde-gollem

Translation(s): none


General Horde installation Howto

Debian 6.0 "Squeeze"

For Debian squeeze, Horde 3 instructions are at Horde/Horde3.

Debian 7.0 "Wheezy"

Horde is not in Debian Wheezy, but you can install it from jessie.

This can be done with (as root):

cat <<EOF > /etc/apt/sources.list.d/jessie.list
deb http://ftp.fr.debian.org/debian jessie main
EOF
cat <<EOF > /etc/apt/preferences.d/horde.pref
Package: *
Pin: release a=testing
Pin-Priority: 100

Package: php-horde php-horde-*
Pin: release a=testing
Pin-Priority: 500
EOF
apt-get update

... and following the instructions for sid.

Debian testing (jessie) or unstable (sid)

Installing bundles

If you want to install the webmail bundle:

apt-get install php-horde-webmail

Then :

webmail-install

If you want to install the groupware bundle:

apt-get install php-horde-groupware

Then :

groupware-install

NB: Horde bundles provides 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/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).