| 1 | location /pma {
|
|---|
| 2 | alias /opt/dezem/var/www/sites/pma/htdocs;
|
|---|
| 3 |
|
|---|
| 4 | location ~ ^/pma/?$ { autoindex on; }
|
|---|
| 5 |
|
|---|
| 6 | location ~ ^/pma/.*[^/]\.php(/.*)?$ {
|
|---|
| 7 | fastcgi_split_path_info ^/pma(.*?[^/]\.php)(/.*)?$;
|
|---|
| 8 |
|
|---|
| 9 | try_files $fastcgi_script_name =404;
|
|---|
| 10 |
|
|---|
| 11 | include include/generic-php5-fpm.conf;
|
|---|
| 12 | fastcgi_param SCRIPT_NAME /pma$fastcgi_script_name;
|
|---|
| 13 | }
|
|---|
| 14 |
|
|---|
| 15 | location ~ ^/pma/.*/$ {
|
|---|
| 16 | fastcgi_index index.php;
|
|---|
| 17 | fastcgi_split_path_info ^/pma(.*)()$;
|
|---|
| 18 |
|
|---|
| 19 | try_files $fastcgi_script_name $uri/index.html;
|
|---|
| 20 |
|
|---|
| 21 | include include/generic-php5-fpm.conf;
|
|---|
| 22 | fastcgi_param SCRIPT_NAME /pma$fastcgi_script_name;
|
|---|
| 23 | }
|
|---|
| 24 |
|
|---|
| 25 | try_files $uri =404;
|
|---|
| 26 | }
|
|---|