You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 28 Next »

IIS

Для корректной работы консоли пользователя на ОС Windows Server 2008 потребуется добавить новый Тип MIME (MIME Type) в IIS.

  • Запустите IIS, перейдите на главную страницу и откройте пункт Типы MIME (MIME Types) в разделе IIS.
  • Нажмите Добавить (Add...) в разделе Действия (Actions).
  • В полеРасширение файла (File name exstension) укажите .json, в поле Тип MIME (MIME Type) укажите application/json.
  • Нажмите ОК и перезагрузите IIS.

Конфигурация

Все URL указываются в нижнем регистре.

Перейдите в каталог C:\inetpub\wwwroot\uc\assets\config   и отредактируйте файл config.prod.json:

env:

  • url - URL Indeed PAM User Console
  • useremoteapp - режим запуска опубликованного приложения
"env": {
	"name": "PROD",
	"lang": "ru",
	"url": "https://pam.indeed.demo/uc"
	"useremoteapp": true
}

apiServer:

  • url - URL Indeed PAM Core
"apiServer": {
	"url": "https://pam.indeed.demo/api"
}

gatewayServer:

  • address - DNS-имя Indeed PAM Gateway
"gatewayServer": {
	"address": "pam.indeed.demo"
}

idp:

  • url - URL Indeed PAM IdP
  • requireHttps - требовать защищённое подключение
"idp": {
	"url": "https://pam.indeed.demo/idp",        
	"requireHttps": true
}


  • No labels