Deployment Doc-IIS
Deployment Doc-IIS
Deployment Process
Contents
1. Overview.............................................................................................................................................2
2. Deployment Process............................................................................................................................2
2.1 IIS.................................................................................................................................................2
2.1.1. Install the .NET Core Hosting Bundle on Windows Server...................................................2
2.1.2. Create the IIS site.................................................................................................................2
2.1.3. Publish an ASP.NET Core app...............................................................................................4
2.1.4. Make Host Entry to browse from Browser...........................................................................4
1. Overview
This document will be describing the process of deploying the ePay core builds to IIS
The .NET Core Hosting bundle is an installer for the .NET Core Runtime and ASP.NET
Core Module. The bundle allows ASP.NET Core apps to run with IIS.
On the IIS server, create a folder to contain the app's published folders and files. In the
following step, the folder's path is provided to IIS as the physical path to the app.
In IIS Manager, open the server's node in the Connections panel. Right-click the Sites folder.
Select Add Website from the contextual menu.
Provide a Site name and set the Physical path to the app's deployment folder that you created.
Provide the Binding configuration and create the website by selecting OK.
2.1.3. Publish an ASP.NET Core app.
Publish an app means to produce a compiled app that can be hosted by a
server. Deploy an app means to move the published app to a hosting system.
b. Move published file into site file path -> Next step is to copy and paste the
complied code to the site physical path which we have created above.