Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,902 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
.exe
file and an internal package folder..exe
file and internal packages to the /site/wwwroot
directory in the App Service and was able to run it on port 8000. However, I'm unable to access the application via the default domain of the App Service.Could someone please assist or guide me on how to deploy this built .exe
file and make the application accessible via the default domain of the App Service?
@Ajith Thangarasu Deploying a Python executable file to Azure App Service and making it accessible via the default domain involves a few additional steps.
.exe
file. You can do this in the Azure portal under Configuration > General settings > Startup Command. Set it to something like:
./your_executable_file.exe
web.config
file in the /site/wwwroot
directory with the following content:
<configuration>
web.config
File:
web.config
file is deployed to the /site/wwwroot
directory along with your executable and internal package folder.