Configuration files and routes
IG processes requests and responses by using the following JSON files: admin.json, config.json, Route, and Router.
Configuration location
The following table summarizes the default location of the IG configuration and logs.
Purpose | Default location on Linux | Default location on Windows |
---|---|---|
Log messages from IG and third-party dependencies |
|
|
Administration (admin.json) Gateway (config.json) |
|
|
Routes (Route) |
|
|
SAML 2.0 |
|
|
Groovy scripts for scripted filters and handlers, and other objects |
|
|
Temporary directory To change the directory, configure |
|
|
JSON schema for custom audit To change the directory, configure |
|
|
Configuration security
Allow the following access to $HOME/.openig/logs
, $HOME/.openig/tmp
, and all
configuration directories:
-
Highest privilege the IG system account.
-
Least priviledge for specific accounts, on a case-by-case basis
-
No priviledge for all other accounts, by default
Change the base location
By default, the base location for IG configuration files is in the following directory:
-
Linux
-
Windows
$HOME/.openig
%appdata%\OpenIG
Change the location in the following ways:
-
Edit the
prefix
property of admin.json. -
Use an argument with the startup command. The following example reads the configuration from the
config
directory under/path/to/config-dir
:-
Linux
-
Windows
$ /path/to/identity-gateway-2024.3.0/bin/start.sh /path/to/config-dir
C:\path\to\identity-gateway-2024.3.0\bin\start.bat /path/to/config-dir
-
Route names, IDs, and filenames
The filenames of routes have the extension .json, in lowercase.
The router scans the $HOME/.openig/config/routes
folder for files with the .json extension.
It uses the route name
property to order the routes in the configuration.
If the route does not have a name
property, the router uses the route ID.
The route ID is managed as follows:
-
When you add a route manually to the routes folder, the route ID is the value of the
_id
field. If there is no_id
field, the route ID is the filename of the added route. -
When you add a route through the Common REST endpoint, the route ID is the value of the mandatory
_id
field. -
When you add a route through Studio, you can edit the default route ID.
The filename of a route can’t be |
Inline and heap objects
- Inline objects
-
An inline object is declared in a route or configuration, outside of the heap.
The following example shows an inline declaration for a handler to route requests:
{ "handler": { "name": "My Router", "type": "Router" } }
The
name
property for inline objects is optional but useful for logging.Other objects in the configuration can never refer to named or unnamed inline objects.
- Heap objects
-
A heap object is declared inside the heap.
The following example shows a named router in the heap, and a handler that refers to the router by its name:
{ "handler": "My Router", "heap": [ { "name": "My Router", "type": "Router" } ] }
The
name
property for heap objects is required. Other objects in the configuration or its child configirations can refer to the heap obect by itsname
property.
Comment the configuration
JSON format doesn’t specify a notation for comments. If IG does not recognize a JSON field name, it ignores the field. As a result, it’s possible to use comments in configuration files.
The following conventions are available for commenting:
-
A
comment
field to add text comments. The following example includes a text comment.{ "name": "capture", "type": "CaptureDecorator", "comment": "Write request and response information to the logs", "config": { "captureEntity": true } }
-
An underscore (
_
) to comment a field temporarily. The following example comments out"captureEntity": true
, and as a result it uses the default setting ("captureEntity": false
).{ "name": "capture", "type": "CaptureDecorator", "config": { "_captureEntity": true } }
Restart after configuration change
You can change routes or change a property that’s read at runtime or that relies on a runtime expression without needing to restart IG to take the change into account.
Stop and restart IG only when you make the following changes:
-
Change the configuration of any route, when the
scanInterval
of Router isdisabled
(see Router). -
Add or change an external object used by the route, such as an environment variable, system property, external URL, or keystore.
-
Add or update
config.json
oradmin.json
.
Prevent reload of routes
To prevent routes from being reloaded after startup, stop IG, edit
the router scanInterval
, and restart IG. When the interval is
set to disabled
, routes are loaded only at startup:
{
"name": "Router",
"type": "Router",
"config": {
"scanInterval": "disabled"
}
}
The following example changes the location where the router looks for the routes:
{
"name": "Router",
"type": "Router",
"config": {
"directory": "/path/to/safe/routes",
"scanInterval": "disabled"
}
}
Reserved routes
For information about reserved routes, refer to Reserved routes.