-
Notifications
You must be signed in to change notification settings - Fork 97
Site Config Apis
David Ebbo edited this page Jan 20, 2015
·
5 revisions
- Get Site Config
ARMClient.exe get /{subscription}/resourceGroups/{resourceGroup}/providers/Microsoft.Web/sites/{site}/config/web?api-version=2014-11-01
- Update Site Config
ARMClient.exe put /{subscription}/resourceGroups/{resourceGroup}/providers/Microsoft.Web/sites/{site}/config/web?api-version=2014-11-01 @payload.json
Example payload.json below
{
"properties": {
"httpLoggingEnabled": false,
"detailedErrorLoggingEnabled": true
}
}