supervisor-manager / yii2-supervisor-manager
Supervisor manager module for Yii2
Installs: 12 583
Dependents: 0
Suggesters: 0
Security: 0
Stars: 16
Watchers: 2
Forks: 13
Open Issues: 5
Type:yii2-extension
Requires
Requires (Dev)
- mikey179/vfsstream: ~1
- phpunit/phpunit: 5.1.*
This package is not auto-updated.
Last update: 2024-10-26 18:33:29 UTC
README
Provides a graphical interface to the supervisor process manager. This package is written to work with the Yii2 framework. To use this package you should have already installed supervisor on your system.
After install of supervisor you should update supervisor.conf by adding new config path:
[include]
files = {project_path}/common/config/supervisor/*.conf
##Installation Simply add to your composer.json
"supervisor-manager/yii2-supervisor-manager": "dev-master",
And add new module to your application config:
...
'modules' => [
'supervisor' => [
'class' => 'supervisormanager\Module',
'authData' => [
'user' => 'supervisor_user',
'password' => 'supervisor_pass',
'url' => 'http://127.0.0.1:9001/RPC2' // Set by default
]
]
]
...