RHEL/CentOS7 Problems - Fix path in phpmyadmin.inc and fix static resources (css, js, imgs) not loading in RoundCube

This commit is contained in:
Felipe Novais 2016-11-18 03:08:13 -02:00
commit 25f4e0e158
2 changed files with 4 additions and 1 deletions

View file

@ -12,4 +12,7 @@ location /webmail {
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $request_filename;
}
location ~* ^/webmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
alias /usr/share/roundcubemail/$1;
}
}