Copilot Studio. Deploying Copilot to an IIS Site.
In the previous post, we created a Custom Copilot that answers questions by crawling specific sites.
2024.10.05 - [Copilot Studio] - Copilot Studio. Create New Copilot
In the last post, we deployed it to Teams. This time, it will publish it to an IIS site.
I am not a developer but an engineer. Please consider this as a guide to understand the overall process and flow.
Settings in the upper right corner.
Security -> Authentication
No authentication -> Save
Save
Publish
Publish
Click Channels -> Demo website to verify if the deployed Copilot is functioning correctly on the web.
Ask a question to verify that it is functioning correctly.
Custom website
You will receive the embed code as shown below.
I have set up a test web server on an IIS server using Visual Studio as shown below. Now, let’s add the Copilot to it.
If you would like to build a test environment from scratch, please refer to the articles below.
I used Visual Studio as the development environment and added the following code to the Index.cshtml file.
<div style="margin-top: 20px;">
<iframe src="CopilotURL"
frameborder="0"
style="width: 500px; height: 500px;">
</iframe>
</div>
You can also run Copilot on a custom website as shown below.