Jilo Agent - a remote agent for Jilo Web
Go to file
Yasen Pramatarov 78235f057b Adds install script and init scripts 2024-10-02 19:21:58 +03:00
doc Adds install script and init scripts 2024-10-02 19:21:58 +03:00
.gitignore Added support for HTTPS. Removed PHP version. 2024-10-02 18:54:52 +03:00
CHANGELOG.md Adds install script and init scripts 2024-10-02 19:21:58 +03:00
LICENSE Initial commit 2024-09-01 11:34:49 +00:00
README.md Added support for HTTPS. Removed PHP version. 2024-10-02 18:54:52 +03:00
go.mod Added support for HTTPS. Removed PHP version. 2024-10-02 18:54:52 +03:00
go.sum Added support for HTTPS. Removed PHP version. 2024-10-02 18:54:52 +03:00
main.go Added support for HTTPS. Removed PHP version. 2024-10-02 18:54:52 +03:00

README.md

jilo-agent

overview

Jilo Agent - a remote agent for Jilo Web written in Go.

license

This project is licensed under the GNU General Public License version 2 (GPL-2.0). See LICENSE file.

installation

Clone the git repo. Either run the agent with Goor build it and run the executable.

Run it (mainly used for tests):

go run main.go

Build the agent:

go build -o jilo-agent main.go

configuration

The config file is "jilo-agent.json", in the same folder as the "jilo-agent" binary.

If you add the SSL config options, HTTPS will be used.

You can run the agent without a config file - then default vales are used.

usage

Run the agent

./jilo-agent

Send queries to its port (by default 8081, in order to avoid 80, 8080, 8888; configurable in jilo-agent.json):

curl -s http://localhost:8081/nginx
curl -s http://localhost:8081/jicofo
etc...