Hi Ulrich,

On 20 May 2026, at 16:52, Ulrich Hiller via Users wrote:

> But this is for a new install.
> I have already set everything working for 1.6.15.
> The procedure for upgrade always was unpacking the new tar.gz and doing
> ./bin/installto.sh /usr/share/nginx/html/roundcubemail

I do it manually and have a link called roundcube. I set the link to the 
current version and replace some settings files from the old one.
Finished, running. That should work also with 1.7
as long as your nginx config is good, I use this in it’s own file and include 
it:
location /webmail/ {
    root /usr/local/roundcubemail;
    index index.php index.html;
    location ~ ^/webmail/(README|INSTALL|LICENSE|CHANGELOG|UPGRADING)$ {
                 deny all;
        }
        location ~ ^/webmail/(bin|SQL|config|temp|logs)/ {
                deny all;
        }
    location ~ ^/webmail/(.*\.php)$ {
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_index index.php;
        include fastcgi.conf;
        fastcgi_param SCRIPT_FILENAME $document_root/$1;
    }
}


cheers
Matthias

Attachment: signature.asc
Description: OpenPGP digital signature

_______________________________________________
Users mailing list -- [email protected]
To unsubscribe send an email to [email protected]

Reply via email to