Phpssdbadmin安装

来自linux中国网wiki
Evan讨论 | 贡献2019年10月14日 (一) 13:52的版本 (导入1个版本)
(差异) ←上一版本 | 最后版本 (差异) | 下一版本→ (差异)
跳到导航 跳到搜索


phpssdbadmin

安装过程省略 只剩下比较容易 让小伙伴晕的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;
}

}

参考

https://github.com/ssdb/phpssdbadmin

SSDB 数据库的图形化界面管理工具 – phpssdbadmin http://www.ideawu.net/blog/archives/818.html

https://www.oschina.net/p/phpssdbadmin