ASP.NET - What should be included in the site installation checklist?

I was asked to create a website installation checklist for an ASP.NET website. I have included sections that explain how to configure the following:

  • Setting ASP.NET Session State
  • IIS configuration
  • Launching the website installer

What other sections / aspects should be considered that should typically be included in a checklist for setting up an ASP.NET website?

+4
source share
3 answers

It all depends on your target audience, but here are a few ideas.

  • Prerequisites like:

    • .Net framework.
    • OS, IIS, etc.
    • Equipment requirements.
  • Relevant SQL configuration section, if applicable.

  • Application Pool Configuration

  • Security configuration: application pool identifier, folder permissions, etc., impersonation.

  • Web.config: if you have special AppSettings settings that you need to configure during installation.

EDIT And this is not included in the checklist, but in the installation document, including the “Troubleshooting” section, it would be nice to have

+2
source

grant permission to network services or use ur user account.

+4
source

The most important of these is checking the health of the application / website and make sure it works.

  • If the application is being written to the file system, this should be checked, since the network service needs permissions for the file system for this.
  • The files were compiled in the version, and debugging and tracing were disabled in the web.config file
+1
source

Source: https://habr.com/ru/post/1390058/


All Articles