一些本地配置 - lextel/evolution GitHub Wiki


alens

192.168.3.170/phpmyadmin/ root 1


nginx llt.conf

server {

    listen   80;
    root /home/lan/project/evolution/public;
    #root /usr/share/nginx/html/evolution/public;
    index index.php index.html;
    server_name www.llt.com;

    charset utf-8;

    location / {
            try_files $uri $uri/ @handler;
    }

    location @handler {
            rewrite ^ /index.php?/$request_uri;
    }

    location ~ ^/index.php$ {
            fastcgi_pass unix:/var/run/php5-fpm.sock;
            fastcgi_index index.php;
            include fastcgi_params;
            fastcgi_param SCRIPT_FILENAME /home/lan/project/evolution/public/index.php;        
    }
}

开发机

http://192.168.3.10/admin 帐号:admin 密码:llllll

root a123123

phpmyadmin http://192.168.3.10:81/ root 1

http://183.63.52.188/

后台 http://183.63.52.188/admin 帐号:admin 密码:llllll

⚠️ **GitHub.com Fallback** ⚠️