Configuring HotDocs Hub User Interface Access Permissions in IIS
User access to the HotDocs Hub user interface can be restricted by adding
authorization rules to the HotDocsTemplateHubUi
application in Internet Information Services (IIS).
Configuring Template Hub Access Permissions
To configure access permissions for the user interface, you must complete
the following steps in order:
- Add Authorization Rules
- Edit the web.config file
- Enable Windows
Authentication in IIS
To Add Authorization Rules
- Open IIS Manager.
- Expand the Default Website
node or other website under which HotDocs Hub is installed.
- Click the HotDocsTemplateHubUi
application.
- Double-click .Net Authorization
in the centre pane.
- Click Add Deny Rule in
the right-hand pane.
- Select All users.
- Click OK.
- Click Add Allow Rule in
the right-hand pane.
- Select Specified roles or user
groups.
- Enter specific usernames or user groups in the Specified
roles or user groups text
field.
- Click OK.
To edit the Web.config
- Right-click HotDocsTemplateHubUi
and select Explorer.
- Edit the Web.config file
in a text editor.
- In the Authorization node,
change the order of the authorization rules to the appropriate order.
For example, change:
<deny users="*"
/>
<allow roles="example-user" />
to:
<allow roles="example-user"
/>
<deny users="*" />
- Save the changes.
To Enable Windows
Authentication in IIS
- Click the HotDocsTemplateHubUi
application.
- Double-click Authentication
in the centre pane.
- Right-click the Windows
Authentication option and select
Enable.
Users attempting to access the HotDocs
Hub user interface must enter a username and password. Only
the Users and User Groups specifically added to the Add Allow Rule may
now access the user interface.