Guest User

Untitled

a guest
Nov 6th, 2018
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1. # REST API listen URI. Must be reachable by other Graylog server nodes if you run a cluster.
  2. # When using Graylog Collectors, this URI will be used to receive heartbeat messages and must be accessible for all collectors.
  3. rest_listen_uri = http://glg.mydomain.com:9000/api/
  4.  
  5. # REST API transport address. Defaults to the value of rest_listen_uri. Exception: If rest_listen_uri
  6. # is set to a wildcard IP address (0.0.0.0) the first non-loopback IPv4 system address is used.
  7. # If set, this will be promoted in the cluster discovery APIs, so other nodes may try to connect on
  8. # this address and it is used to generate URLs addressing entities in the REST API. (see rest_listen_uri)
  9. # You will need to define this, if your Graylog server is running behind a HTTP proxy that is rewriting
  10. # the scheme, host name or URI.
  11. # This must not contain a wildcard address (0.0.0.0).
  12. rest_transport_uri = http://glg.mydomain.com:9000/api/
  13.  
  14. # Web interface listen URI.
  15. # Configuring a path for the URI here effectively prefixes all URIs in the web interface. This is a replacement
  16. # for the application.context configuration parameter in pre-2.0 versions of the Graylog web interface.
  17. web_listen_uri = http://glg.mydomain.com:9000/
  18.  
  19. # Web interface endpoint URI. This setting can be overriden on a per-request basis with the X-Graylog-Server-URL header.
  20. # Default: $rest_transport_uri
  21. web_endpoint_uri = http://glg.mydomain.com:9000/
Advertisement
Add Comment
Please, Sign In to add comment