mirror of
https://github.com/myvesta/vesta
synced 2025-08-14 18:49:21 -07:00
Yakkety Yak configs
This commit is contained in:
parent
fa4b66f8c7
commit
8969cad0c8
128 changed files with 6699 additions and 0 deletions
18
install/ubuntu/16.10/nginx/phpmyadmin.inc
Normal file
18
install/ubuntu/16.10/nginx/phpmyadmin.inc
Normal file
|
@ -0,0 +1,18 @@
|
|||
location /phpmyadmin {
|
||||
alias /usr/share/phpmyadmin/;
|
||||
|
||||
location ~ /(libraries|setup) {
|
||||
return 404;
|
||||
}
|
||||
|
||||
location ~ ^/phpmyadmin/(.*\.php)$ {
|
||||
alias /usr/share/phpmyadmin/$1;
|
||||
fastcgi_pass 127.0.0.1:9000;
|
||||
fastcgi_index index.php;
|
||||
include fastcgi_params;
|
||||
fastcgi_param SCRIPT_FILENAME $request_filename;
|
||||
}
|
||||
location ~* ^/phpmyadmin/(.+\.(jpg|jpeg|gif|css|png|js|ico|html|xml|txt))$ {
|
||||
root /usr/share/;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue