|
|
第1行: |
第1行: |
| | | #重定向 [[Php常用扩展及docker安装]] |
| | |
| ==phpssdbadmin ==
| |
| <pre>
| |
| 安装过程省略 只剩下比较容易 让小伙伴晕的try_files
| |
| | |
| [root@dk-server hosts]# cat ssdbadmin.conf
| |
| server {
| |
| listen 80;
| |
| #server_name 192.168.30.62;
| |
| server_name dkm-test.ssdb.com;
| |
| root /data/www/phpssdbadmin/;
| |
| charset utf-8;
| |
| #access_log off;
| |
| access_log /data/logs/nginx/access.log main;
| |
| index Index.php index.php index.htm index.html;
| |
| client_max_body_size 1024m;
| |
| | |
| | |
| location / {
| |
| index index.php index.html index.htm;
| |
| try_files $uri $uri/ /index.php?$args;
| |
| }
| |
| | |
| }
| |
| | |
| </pre>
| |
| == 参考==
| |
| | |
| https://github.com/ssdb/phpssdbadmin
| |
| | |
| SSDB 数据库的图形化界面管理工具 – phpssdbadmin
| |
| http://www.ideawu.net/blog/archives/818.html
| |
| | |
| https://www.oschina.net/p/phpssdbadmin
| |
| | |
| [[category:ops]] | |