This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 652
Azure runtime environment
Suwat Ch edited this page Jul 9, 2019
·
21 revisions
This document describes various aspects of the environment that Azure Web Apps run under.
Azure Web Apps sets some environment variables with information about your Web App.
-
WEBSITE_SITE_NAME
- The name of the site. -
WEBSITE_SKU
- The sku of the site (Possible values:Free
,Shared
,Basic
,Standard
). -
WEBSITE_COMPUTE_MODE
- Specifies whether website is on a dedicated or shared VM/s (Possible values:Shared
,Dedicated
). -
WEBSITE_HOSTNAME
- The Azure Website's primary host name for the site (For example:site.azurewebsites.net
). Note that custom hostnames are not accounted for here. -
WEBSITE_INSTANCE_ID
- The id representing the VM that the site is running on (If site runs on multiple instances, each instance will have a different id). -
WEBSITE_NODE_DEFAULT_VERSION
- The default node version this website is using. -
WEBSOCKET_CONCURRENT_REQUEST_LIMIT
- The limit for websocket's concurrent requests. -
WEBSITE_COUNTERS_ALL
- (Windows only) all perf counters (ASPNET, APP and CLR) in JSON format. You can access specific one such as ASPNET byWEBSITE_COUNTERS_ASPNET
.
See Perf Counters exposed as environment variables for details.
Understanding the Azure App Service file system
Azure Web Apps run in a sandboxed environment that allows multiple sites to safely co-exist on the same machine.
In most cases, sites are able to do most things that 'normal' web sites typically need to do. But in some scenario, you may run into something that doesn't work due to sandbox limitations. See Azure Web-App Sandbox for more details.