Latest update: 7.0.2
- Preface
- About IG
- IG As an HTTP Gateway
- Processing Requests and Responses
- Development Mode and Production Mode
- Decorators
- Configuration Parameters Declared as Property Variables
- Changing the Configuration and Restarting IG
- Understanding IG APIs With API Descriptors
- Sessions
- Secrets
- Installation in Detail
- About Securing Connections
- Installing IG in Standalone Mode
- Installing IG in Apache Tomcat
- Installing IG in Jetty
- Installing IG in JBoss EAP
- Preparing the Network
- Changing the Default Location of the Configuration Folders
- Preparing For Load Balancing and Failover
- Configuring IG For HTTPS (Client-Side)
- Using JWT Sessions
- Setting Up AM
- Getting Login Credentials From Data Sources
- Getting Login Credentials From AM
- Single Sign-On and Cross-Domain Single Sign-On
- Enforcing Policy Decisions From AM
- Hardening Authorization With Advice From AM
- Protecting Against CSRF Attacks
- Acting As a SAML 2.0 Service Provider
- Acting As an OAuth 2.0 Resource Server
- Acting As an OpenID Connect Relying Party
- Transforming OpenID Connect ID Tokens Into SAML Assertions
- Supporting UMA Resource Servers
- Configuring Routers and Routes
- Proxying WebSocket Traffic
- Implementing Not-Enforced URIs for Authentication
- Configuration Templates
- Extending IG
- Throttling the Rate of Requests to Protected Applications
- SAML 2.0 and Multiple Applications
Changing the Default Location of the Configuration Folders
By default, the base location for IG configuration files is in the following directory:
$HOME/.openig
%appdata%\OpenIG
Change the default base location in the following ways:
Set the
IG_INSTANCE_DIR
environment variable to the full path to the base location:$
export IG_INSTANCE_DIR=/path/to/instance-dir
C:>
set IG_INSTANCE_DIR=c:\path\to\instance-dir
For IG running in web container mode, set the
ig.instance.dir
Java system property to the full path of the base location. The following example starts Jetty in the foreground and sets the value ofig.instance.dir
:$
java -Dig.instance.dir=/path/to/instance-dir -jar start.jar
For IG running in standalone mode, specify the base location as an argument. The following example reads the configuration from the
config
directory under/path/to/instance-dir
:$
/path/to/identity-gateway/bin/start.sh /path/to/instance-dir