Vesta 2.0 is coming soon! See our progress update: https://vestacp.com/docs/vesta-2-update
Search found 1 match
- Tue Apr 03, 2018 2:04 pm
- Forum: Mail Server
- Topic: Roundcube doesn't load CSS and JS
- Replies: 3
- Views: 6311
Re: Roundcube doesn't load CSS and JS
i found a solution
add
location ~* ^/webmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
alias /var/lib/roundcube/$1;
}
to /etc/nginx/conf.d/webmail.inc
location /webmail {
alias /var/lib/roundcube/;
location ~ /(config|temp|logs) {
return 404;
}
location ~ ^/webmail/(.*\.php ...
add
location ~* ^/webmail/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
alias /var/lib/roundcube/$1;
}
to /etc/nginx/conf.d/webmail.inc
location /webmail {
alias /var/lib/roundcube/;
location ~ /(config|temp|logs) {
return 404;
}
location ~ ^/webmail/(.*\.php ...