Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

This article explains configuration items available for Standalone Agents, Director Agents and Subagents in a JS7 - Agent Cluster

  • An Agent makes use of two configuration files:
    • the agent.conf general configuration file which is found in the following locations:
      • Windows: C:\ProgramData\sos-berlin.com\js7\agent\var\config\agent.conf
      • Unix /var/sos-berlin.com/js7/agent/var/config/agent.conf
    • the private.conf security configuration file which is found in the following locations:
      • Windows: C:\ProgramData\sos-berlin.com\js7\agent\var\config\private.conf
      • Unix: /var/sos-berlin.com/js7/agent/var/config/private/private.conf
    • The configuration format makes use of Typesafe Config, see the JS7 - Configuration Format article.
    • Restart the Agent instance to apply changes to any configuration files.
  • For HTTPS configuration refer to the JS7 - Configuration Templates article.

...

Code Block
languagetext
titleDefault configuration: enable HTTP connections
linenumberstrue
# Allow http connections without authentication
js7.web.server.auth.public = true
js7webserver





authpublictrue|false
  • This setting specifies public access to an Agent if incoming HTTP connections are to be used. If used with a value true then authentication is not applied.
  • Default: true

...