Hi how do I get "pim" or horde to ansver on me
epost.mydomain.com
in stead of www.mydomain.com/pim
New user's registration have been closed due to high spamming and low trafic on this forum. Please contact forum admins directly if you need an account. Thanks !
v-host on apache2
As root, create a config file that describes your virtual host. Put it, or create a symlink to it, in the folder /etc/apache2/sites-available. The file should look something like:
Restart apache and that should be it.
If you want to support https, simply add it to the same file.
Code: Select all
<VirtualHost *:80>
ServerName epost.mydomain.com
DocumentRoot /usr/share/horde3
ServerAdmin someone@mydomain.com
ErrorLog /var/log/apache2/epost_error.log
LogLevel warn
CustomLog /var/log/apache2/epost.log combined
ServerSignature On
</VirtualHost>
Code: Select all
/etc/init.d/apache2 restart