Parent Directory | Revision Log | Revision Graph
from epel
1 | # phpMyAdmin |
2 | |
3 | location = /phpMyAdmin { |
4 | alias /usr/share/phpMyAdmin/; |
5 | } |
6 | |
7 | location /phpMyAdmin/ { |
8 | root /usr/share; |
9 | index index.php index.html; |
10 | |
11 | location ~ ^/phpMyAdmin/(.+\.php)$ |
12 | { |
13 | try_files $uri =404; |
14 | fastcgi_intercept_errors on; |
15 | include fastcgi_params; |
16 | fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; |
17 | fastcgi_pass php-fpm; |
18 | } |
19 | } |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |