RoundCube Webmail With ISPConfig 3 On Debian Wheezy (Apache2)

Discussion in 'HOWTO-Related Questions' started by Slicer, Jun 18, 2013.

  1. Slicer

    Slicer Member

    2 things.

    1. Anyone tried this same setup but with nginx rather than Apache?

    2. Has anyone been able to do this and then use the update script that comes with the latest version of Roundcube? The last time I tried it either trashed my install or I was not doing something right. As soon as I run the update script it told me that Roundcube was not configured after it had already been working.:mad:

    Thanks!!
     
  2. TiTex

    TiTex Member

    that's why it's wise to do a backup (files/db) before attempting updates
    however you should find some information regarding roundcube in the ../installdir/logs folder
     
  3. Slicer

    Slicer Member

    Was not that big of a deal as I am working on bringing up a new server. Trying out different things before putting into production..

    Thanks..
     
  4. dclardy

    dclardy Member

    I have it working with nginx. I followed the tutorial for the most part. I just added in some custom nginx rules for roundcube in /etc/nginx/sites-enabled/000-ispconfig.vhost. I also installed roundcube from the source instead of with apt-get.

    location /roundcube {
    root /var/www/;
    index index.php index.html index.htm;
    location ~ ^/roundcube/(.+\.php)$ {
    try_files $uri =404;
    root /var/www/;
    include /etc/nginx/fastcgi_params;
    fastcgi_pass unix:/var/lib/php5-fpm/www.sock;
    fastcgi_param HTTPS on;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME $request_filename;
    }
    location ~* ^/roundcube/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
    root /var/www/;
    }
    }
    location /webmail {
    rewrite ^/* /roundcube last;
    }
     
  5. Slicer

    Slicer Member

    thanks! Good info to have..
     

Share This Page