All URLs are specified in lowercase.

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

env section

  • url - is URL of Indeed PAM Management Console
  • lang - is the user interface language of the component, set it to "en" value

    "env": {
    	"name": "PROD",
    	"lang": "en",
    	"url": "https://pam.indeed-id.local/pam/mc"
    }

core section

  • url - is URL of Indeed PAM Core

    "core": {
    	"url": "https://pam.indeed-id.local/pam/core"
    }

idp section

  • url - URL Indeed PAM IdP
  • requireHttps - require secure connection

    "idp": {
    	"url": "https://pam.indeed-id.local/pam/idp",        
    	"requireHttps": true
    }

security section

  • allowRevealCredentials - option 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
    },  

polling section

  • intervalSeconds - selection of the PAM Core polling interval to get the number of active sessions and session requests

      "polling": {
        "intervalSeconds": 5
      } 


  • No labels