Whitelisting a Domain in Core Assembly Service
You only need to follow these steps if you:
- Are upgrading Core Assembly Service from an existing installation that already has the whitelist specified
- You accidentally omitted whitelisted domains during a new installation of Core Assembly Service
The following steps enable you to manually whitelist a domain for use by the HotDocs Core Assembly Service.
To whitelist a domain
- Open Windows Explorer.
- Navigate to the Core Assembly Service installation folder; by default, this is C:\inetpub\wwwroot\HotDocs Core.
- Edit the web.config file in a text editor.
- At the bottom of the configuration
section of the web.config file, add an alloweddomain
section as follows:
<alloweddomains>
<domains>
<add domain="*.{domain}"/>
</domains>
</alloweddomains> - Replace {domain} in the example above with the domain you want to whitelist; for example, yourorganization.com.
- Save your changes.