Reputation: 1887
I have a asp.net MVC 5 application hosted on Windows Azure websites. Previously it was hosted in a VPS (SoftSys hosting) and i had set up Maximum Worker Process for application pool to 2.
How do i set it in Azure website ?
I am using Basic B1 Azure Website hosting plan.
Upvotes: 2
Views: 1808
Reputation: 414
Maybe the following command help? Set-AzureWebsite -name "websitename" -Slot "slot-name" -NumberOfWorkers 2
The above works and maximum is 3 for Basic plan. Tested it today.
Upvotes: 0
Reputation: 49095
This level of fine-tuning is beyond the scope of an Azure Website. You'll have to opt for a WebRole and use startup script (or equivalent methods).
For an updated list of allowed Web.Config
overrides, see:
Upvotes: 0