listen to UDP server from azure web apps

后端 未结 1 1207
执念已碎
执念已碎 2021-01-26 14:45

I am building a web app using node.js and the azure web app service. My node.js server is supposed to accept UDP data from client devices, but I am having difficult time settin

1条回答
  •  一向
    一向 (楼主)
    2021-01-26 15:27

    Azure App Service is restricted to TCP 80/443. See Express Applications throwing 500 on azure.

    If you need to listen on a port different from 80/443, you'd need to deploy to a Virtual Machine which supports any TCP/UDP ports.

    0 讨论(0)
提交回复
热议问题