Deploying project on Azure

Hey, i have a problem deploying app on azure. did everyghing what was written in documentation except
setting pricingTier = ‘B3’,region = ‘westeurope’ because if i set like from documentation it thorws error.

so when deploying is successfull, but when open link it : " :frowning: Application Error"

here is log attached and task in gradle:

azurewebapp {
subscription =‘id’
resourceGroup = ‘yelGroup’
appServicePlanName = ‘yelPlan’
appName = ‘tontelegramyel’
pricingTier = ‘B3’
region = ‘westeurope’
runtime {
os = ‘Linux’
webContainer = ‘Java SE’
javaVersion = ‘Java 17’
}
appSettings {
put(‘main.datasource.url’, ‘jdbc:postgresql://smth.postgres.database.azure.com:5432/postgres’)
put(‘main.datasource.username’, ‘smth’)
put(‘main.datasource.password’, ‘smth’)
}
test.txt (342.3 KB)