Em note lại cách em đang làm, bác nào có cách khác thì chia sẻ tiếp nhé
1. Tạo symbolink
[root@nginx share]# ln -sf /usr/share/phpMyAdmin/ /usr/share/pma
2. Add đoạn sau vào các virtualhost
Code:
location /pma {
root /usr/share/;
index index.php index.html index.htm;
location ~ ^/pma/(.+\.php)$ {
try_files $uri =404;
root /usr/share/;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include /etc/nginx/fastcgi_params;
}
location ~* ^/pma/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
root /usr/share/;
}
---
Nội dung file cấu hình nên đưa vào [ code ] tag để giữ được căn lề.