Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/amir/mod_gearman_status
Gearman status Apache module
https://github.com/amir/mod_gearman_status
Last synced: about 1 month ago
JSON representation
Gearman status Apache module
- Host: GitHub
- URL: https://github.com/amir/mod_gearman_status
- Owner: amir
- License: unlicense
- Created: 2010-03-26T14:41:45.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2012-04-06T13:22:22.000Z (over 12 years ago)
- Last Synced: 2023-04-12T12:26:12.687Z (over 1 year ago)
- Language: C
- Homepage:
- Size: 320 KB
- Stars: 15
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
Gearman status Apache module
To play with this module first compile it into a DSO
file and install it into Apache's modules directory
by running:$ apxs -c -i mod_gearman_status.c
Then activate it in Apache's apache2.conf file for instance
for the URL /gearman-status in as follows:LoadModule gearman_status_module modules/mod_gearman_status.so
SetHandler gearman_status
Then after restarting Apache via
$ apachectl restart
you immediately can request the URL /gearman-status and watch for the
output of this module. This can be achieved for instance via:$ lynx -mime_header http://localhost/gearman-status
By default this module tries to connect to localhost:4730 in order to retrieve
Various information. There are also two per-server directives which let you set
The hostname of the server running gearmand, and the gearmand port. Directives
Are GearmanHostname, and GearmanPort.Nginx version: https://github.com/amir/ngx_http_gearman_status_module