[SOLVED] ISPConfig 3.1dev On Ubuntu 16.04.1 LTS, webmail not found

Discussion in 'Installation/Configuration' started by h.abedie, Aug 28, 2016.

  1. h.abedie

    h.abedie New Member

    Hi
    I install Ispconfig on ubuntu 16.04 (by this guide howtoforge com/tutorial/perfect-server-ubuntu-16.04-with-apache-php-myqsl-pureftpd-bind-postfix-doveot-and-ispconfig), evrything is ok (or seem ok!) but address myserver.tld/webmail return error 404!
    can help me to fix that?
     
  2. Jesse Norell

    Jesse Norell ISPConfig Developer Staff Member ISPConfig Developer

    I don't believe ispconfig sets up a /webmail/ alias by default, you can just add your own
    Code:
    # cat >> /etc/apache2/conf-available/local.conf <<EOF
    
    Alias /webmail /var/lib/roundcube
    EOF
    
    # a2enconf local
    # service apache2 restart
    (that should work for debian; I assume it would on ubuntu as well)
     
  3. h.abedie

    h.abedie New Member

    Thanks! It's Work. :)
     

Share This Page