mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 10:37:42 -07:00
Merge pull request #914 from felipenovais/fix-path-phpmyadmin.inc-and-fix-static-assets-not-loading-on-webmail
(RHEL7) Fix path in phpmyadmin.inc and fix static resources (css, js, imgs) not loading in RoundCube
This commit is contained in:
commit
2e01ba2466
2 changed files with 4 additions and 1 deletions
|
@ -13,6 +13,6 @@ location /phpmyadmin {
|
|||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||
}
|
||||
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
|
||||
root /usr/share/;
|
||||
alias /usr/share/phpMyAdmin/$1;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue