Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"No route registered for '/ZipDeployUI' in Azure

Am following node application deployment guide in Azure app service .After creating the web app in azure it asks to redirect to below url

https://<app_name>.scm.azurewebsites.net/ZipDeployUI

But after redirecting it says.

"No route registered for '/ZipDeployUI'

Any clue to fix this issue.

like image 493
Ayeshmantha Perera Avatar asked Jan 23 '19 10:01

Ayeshmantha Perera


2 Answers

I got this error on a Linux App Services instance. According to the documentation for the ZipDeployUI endpoint:

The above endpoint does not work for Linux App Services at this time. Consider using FTP or the ZIP deploy API instead.

Switching to a Windows App Services instance fixed the issue for me.

like image 79
Minkus Avatar answered Oct 16 '22 04:10

Minkus


https://<app_name>.scm.azurewebsites.net/ZipDeployUI does not work for Linux App Services at this time. Consider using FTP or the ZIP deploy API instead.

Uploading the zip file through the cli.It worked fine for me

az webapp deployment source config-zip --resource-group myResourceGroup --name <app_name> --src clouddrive/<filename>.zip
like image 26
Ayeshmantha Perera Avatar answered Oct 16 '22 05:10

Ayeshmantha Perera