Git Product home page Git Product logo

jdi-ops's Introduction

jdi-ops

JDI 框架的 OPS 运维后台,用于运维监控与开发调试,包括 日志、调试、性能分析

起步

  • git clone --depth=1 https://github.com/muzk6/jdi-ops.git 克隆项目
  • 进去上面克隆的项目,composer install --no-dev 安装依赖
  • 复制 env.example.phpenv.php, 配置里面的常量
  • 配置入口目录为 public/ 的 http 服务,参考下面 Nginx 配置:
server {
    listen 80;
    server_name jdi-ops.com
    root /www/jdi-ops/public;

    location / {
        try_files $uri $uri/ /index.php$is_args$args;
        index index.php index.html index.htm;
    }

    location ~ \.php$ {
        try_files $uri /index.php =404;
        fastcgi_pass 127.0.0.1:9000;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }
}

注意:如果提示目录权限错误,需要对 data 目录(没有则自己新建)加上写权限

其它可选

XHProf

GUI - View Full Callgraph 功能,需要安装 graphviz

  • Ubuntu: sudo apt install graphviz
  • CentOS: yum install graphviz

jdi-ops's People

Contributors

muzk6 avatar

Stargazers

Dong ChengCheng avatar  avatar jesse hu avatar

Watchers

 avatar Dong ChengCheng avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.