“Phpssdbadmin安装”的版本间的差异

来自linux中国网wiki
跳到导航 跳到搜索
docker>Evan
(创建页面,内容为“ ==phpssdbadmin == <pre> 安装过程省略 只剩下比较容易 让小伙伴晕的try_files [root@dk-server hosts]# cat ssdbadmin.conf server { listen...”)
 
(导入1个版本)
 

2019年10月14日 (一) 13:52的最新版本


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