How to turn on custom error for Orchestrator in Azure?
To enable custom errors for UiPath Orchestrator in Azure, follow these steps to access and edit the web.config
file:
Step 1: Access the Kudu Console
- Navigate to your Azure App Service.
- In the left-hand menu, select Development Tools.
- Click on Advanced Tools and then click on the Go link. This will open the Kudu console.
Step 2: Locate the Web.config File
- In the Kudu console, go to the CMD option.
- Navigate to the following directory: site > wwwroot
- Here, you will find the
Web.config
file.
Step 3: Edit the Web.config File
- You can either download the
Web.config
file for offline editing or modify it directly in the Kudu console. - To enable verbose error messages, locate the
section in the
web.config
file. - Change the
mode
attribute toOff
, like so:
Step 4: Save Changes
- If you edited the file directly in Kudu, ensure you save the changes.
- If you downloaded and edited the file, upload the modified
Web.config
back to the same directory.
Step 5: Restart the App Service
- After making the changes, restart your Azure App Service to apply them.