35 lines
923 B
Plaintext
35 lines
923 B
Plaintext
## STETHOSCOPE EXAMPLE CONFIG
|
|
|
|
# The name of this Stethoscope instance. This name is used for the page title. (default: "My Stethoscope")
|
|
service_name=My Stethoscope
|
|
|
|
# Port to listen on. This should be reverse proxied by something like httpd or nginx. (default: 7800)
|
|
listen=7800
|
|
|
|
# Path of the webroot server uses to load asset paths like the stylesheet. (default: )
|
|
webroot=
|
|
|
|
# Time in seconds to wait before attempting to reconnect to the endpoint. (default: 5)
|
|
backoff=5
|
|
|
|
# These are example services.
|
|
;[service.openssh]
|
|
;name=OpenSSH Daemon
|
|
;address=tcp://localhost:22
|
|
|
|
;[service.nginx]
|
|
;name=Nginx
|
|
;address=tcp://localhost:80,tcp://localhost:443,process://nginx,pidfile:///run/nginx.pid
|
|
;backoff=1
|
|
|
|
;[service.email]
|
|
;name=Email
|
|
;address=tcp://localhost:25,tcp://localhost:143
|
|
|
|
;[service.tor]
|
|
;name=Tor
|
|
;address=tcp://127.0.0.1:9050
|
|
|
|
;[service.mumble]
|
|
;name=mumble
|
|
;address=tcp://localhost:64738,udp://localhost:64738 |