-1

So I've been looking around google and other sites for recommended specs for an IIS server, but I haven't found any information that matches my simple use case.

What would be the recommended specifications for IIS? We expect a load of maximum 50 people at the same time, could be 100

Edit: I think I should have shared more about what the app does, its a simple dashboard that uses .net framework, it connects to database and extracts data from it, sometimes thousands (from 1000 to 3000) of rows and presents them on a table. users can also insert into these tables. Its all made in one app, no microservices or web services.

SGP
  • 103
  • 1
  • 5

1 Answers1

1

For a lightly used IIS server, you should start with the recommended specs and then monitor performance and adjust if/where you see bottlenecks. Per the docs, you could start with the following:

One 64-bit 1.4 GHz processor core (I would start with 2) 2 GB RAM 50 GB disk space for OS and roles, with additional space for the site itself and for the paging file RAID redundancy (not just striping) for the disks. It's common to use RAID 1 or better for the system disk and RAID 5 or better for the application data disks if those are separate.

Sam Erde
  • 3,549