--- title: "Configure Identity Server" slug: "configure-identity-server" updated: 2023-11-14T10:29:27Z published: 2023-11-14T10:29:27Z canonical: "help.lanteria.com/configure-identity-server" --- > ## Documentation Index > Fetch the complete documentation index at: https://help.lanteria.com/llms.txt > Use this file to discover all available pages before exploring further. # Configure Identity Server 1. Create folder in this location of the SharePoint Server C:\inetpub\wwwroot\. (any available port can be used)WarningDo not place Identity Server folder into the C:\inetpub\wwwroot\wss\VirtualDirectories folder. 2. Download [Identity Server](https://download.lanteria.com/utilities/IdentityServer.zip) and unzip it to the folder created under wwwroot (e.g., C:\inetp**ub\wwwroot\IdentityServer)****.** 3. Open the appsettings.json file and locate the AppSettings section.JSONJSON ```json { "AppSettings": { "BaseVariables": { "CertificateCN": "CN=your_cert", "RedirectUris": "https://lanteria_hr/_trust/default.aspx", "clientId": "your application id", "tenantId": "your tenant id", "realm": "urn:sharepoint:name", "multitenant": false } }, "Logging": { "IncludeScopes": false, "LogLevel": { "Default": "Warning" } } } ``` 4. Replace the base variables with the relevant values, where: - Certificate is certificate generated during the [previous step](/v1/docs/creating-self-signed-certificate-for-token-signing) (e.g., sp13g) - RedirectUris is URL of the SharePoint web application with _trust/default.aspx added (e.g. http://sp13g/_trust/default.aspx) - Client ID is ID of the Entra ID application - Tenant ID is ID of the Entra ID directory (tenant) - **Realm** is unique identifier of the SharePoint trusted provider used when creating new trusted provider in SharePoint - **Multitenant**: set to true if users from multiple tenants will be using this application to sign in to Lanteria HR. 5. Request external DNS for the SharePoint machine that hosts the Identity Server (for example, authclient1.lanteriaonline.com).