supervisor-manager/yii2-supervisor-manager

为 Yii2 定制的 Supervisor 管理模块

安装次数12,583

依赖项: 0

建议者: 0

安全性: 0

星标: 16

关注者: 2

分支: 13

开放性问题: 5

类型:yii2-extension

1.0.2 2019-12-06 12:17 UTC

This package is not auto-updated.

Last update: 2024-09-14 17:48:27 UTC


README

Build Status Total Downloads Latest Stable Version License

提供对supervisor进程管理器的图形界面。此软件包是为与 Yii2 框架一起使用而编写的。要使用此软件包,您应该在您的系统上已安装 supervisor。

安装 supervisor 后,您应该通过添加新的配置路径来更新 supervisor.conf

[include]
files = {project_path}/common/config/supervisor/*.conf

## 安装:只需将以下内容添加到您的 composer.json 文件中

"supervisor-manager/yii2-supervisor-manager": "dev-master",

并将新模块添加到您的应用程序配置中

...
'modules' => [
  'supervisor' => [
    'class'    => 'supervisormanager\Module',
    'authData' => [
        'user'     => 'supervisor_user',
        'password' => 'supervisor_pass',
        'url'      => 'http://127.0.0.1:9001/RPC2' // Set by default
    ]
  ]
]
...

## 进程列表示例