All URLs are specified in lowercase.

The json format does not allow comments in the file, so you must delete lines beginning with the characters "//"

You need to recycle Indeed.PAM.ManagementConsole application pool after every change to the configuration file. You can do this in IIS Manager snap-in, or with powershell command 

Restart-WebAppPool Indeed.PAM.ManagementConsole

URL example: https://pam.domain.local/pam/mc
pam.domain.local - the fully qualified DNS name of the management server

Go to C:\inetpub\wwwroot\pam\mc\assets\config folder and edit config.prod.json file:

env

  • langthe user interface language of the component, set it to "en" value
  • urlURL of PAM Management Console

  • productName - the product name that appears in the header of the console page
  • faviconUrl - URL of the favicon file for the console page
  • logoUrl - URL of the Logo image for the console page
    "env": {
    	"name": "PROD",
    	"lang": "en",
    	"url": "https://pam.domain.local/pam/mc"
        "productName": "PAM",
        "faviconUrl": "",
        "logoUrl": ""
    },

сore

  • urlURL of PAM Core

    "core": {
    	"url": "https://pam.domain.local/pam/core"
    },

idp

  • urlURL of IdP
  • requireHttpsrequire secure connection

    "idp": {
    	"url": "https://pam.domain.local/pam/idp",        
    	"requireHttps": true
    }

security

  • allowRevealCredentialsoption to control revealing of user account password. If false, the View account credentials option will be disabled in the Management Console when creating permissions

    "security": {
      "allowRevealCredentials": true
    },  

help

In this section, you can fill in the links for the Help and Support section. Parameters that are not filled in will not be displayed.

  • technicalSupportUrl - technical support portal page address

  • documentationUrl - documentation page address
  • knowledgeBaseUrl - knowledge base page address

      "help": {
        "technicalSupportUrl": "",
        "documentationUrl": "https://guides.indeed-id.com/display/ipamdoc26en",
        "knowledgeBaseUrl": ""

polling

  • intervalSecondsselection of the PAM Core polling interval to get the number of active sessions and session requests

      "polling": {
        "intervalSeconds": 5
      } 


  • No labels