Skip to content

Commit

Permalink
Fix DDB
Browse files Browse the repository at this point in the history
  • Loading branch information
PlagueHO committed Aug 19, 2021
1 parent d17fa9a commit 22bc5eb
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions bicep/modules/webAppDdbProxy.bicep
Expand Up @@ -13,6 +13,27 @@ resource webApp 'Microsoft.Web/sites@2021-01-15' = {
siteConfig: {
numberOfWorkers: 1
linuxFxVersion: linuxFxVersion
appSettings: [
{
name: 'VIRTUAL_HOST'
value: webAppName
}
{
name: 'VIRTUAL_PORT'
value: '3000'
}
{
name: 'DOCKER_REGISTRY_SERVER_URL'
value: 'https://ghcr.io'
}
]
}
}

resource config 'config@2021-01-15' = {
name: 'web'
properties: {
linuxFxVersion: linuxFxVersion
}
}
}
Expand Down

0 comments on commit 22bc5eb

Please sign in to comment.